Alternatives to WebGL logo

Alternatives to WebGL

OpenGL, HTML5, D3.js, three.js, and WebAssembly are the most popular alternatives and competitors to WebGL.
183
200
+ 1
0

What is WebGL and what are its top alternatives?

It is integrated completely into all the web standards of the browser allowing GPU accelerated usage of physics and image processing and effects as part of the web page canvas. Its elements can be mixed with other HTML elements.
WebGL is a tool in the Javascript UI Libraries category of a tech stack.

Top Alternatives to WebGL

  • OpenGL
    OpenGL

    It is a cross-language, cross-platform application programming interface for rendering 2D and 3D vector graphics. The API is typically used to interact with a graphics processing unit, to achieve hardware-accelerated rendering. ...

  • HTML5
    HTML5

    HTML5 is a core technology markup language of the Internet used for structuring and presenting content for the World Wide Web. As of October 2014 this is the final and complete fifth revision of the HTML standard of the World Wide Web Consortium (W3C). The previous version, HTML 4, was standardised in 1997. ...

  • D3.js
    D3.js

    It is a JavaScript library for manipulating documents based on data. Emphasises on web standards gives you the full capabilities of modern browsers without tying yourself to a proprietary framework. ...

  • three.js
    three.js

    It is a cross-browser JavaScript library and Application Programming Interface used to create and display animated 3D computer graphics in a web browser. ...

  • WebAssembly
    WebAssembly

    It is an open standard that defines a portable binary code format for executable programs, and a corresponding textual assembly language, as well as interfaces for facilitating interactions between such programs and their host environment. ...

  • jQuery
    jQuery

    jQuery is a cross-platform JavaScript library designed to simplify the client-side scripting of HTML. ...

  • React
    React

    Lots of people use React as the V in MVC. Since React makes no assumptions about the rest of your technology stack, it's easy to try it out on a small feature in an existing project. ...

  • AngularJS
    AngularJS

    AngularJS lets you write client-side web applications as if you had a smarter browser. It lets you use good old HTML (or HAML, Jade and friends!) as your template language and lets you extend HTML’s syntax to express your application’s components clearly and succinctly. It automatically synchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data binding. ...

WebGL alternatives & related posts

OpenGL logo

OpenGL

168
0
An environment for developing 2D and 3D graphics applications
168
0
PROS OF OPENGL
    Be the first to leave a pro
    CONS OF OPENGL
      Be the first to leave a con

      related OpenGL posts

      HTML5 logo

      HTML5

      150.7K
      2.2K
      5th major revision of the core language of the World Wide Web
      150.7K
      2.2K
      PROS OF HTML5
      • 448
        New doctype
      • 389
        Local storage
      • 334
        Canvas
      • 285
        Semantic header and footer
      • 240
        Video element
      • 121
        Geolocation
      • 106
        Form autofocus
      • 100
        Email inputs
      • 85
        Editable content
      • 79
        Application caches
      • 10
        Easy to use
      • 9
        Cleaner Code
      • 5
        Easy
      • 4
        Websockets
      • 4
        Semantical
      • 3
        Better
      • 3
        Audio element
      • 3
        Modern
      • 2
        Portability
      • 2
        Semantic Header and Footer, Geolocation, New Doctype
      • 2
        Content focused
      • 2
        Compatible
      • 1
        Very easy to learning to HTML
      CONS OF HTML5
      • 1
        Easy to forget the tags when you're a begginner
      • 1
        Long and winding code

      related HTML5 posts

      Jan Vlnas
      Senior Software Engineer at Mews · | 26 upvotes · 456.5K views
      Shared insights
      on
      HTML5HTML5JavaScriptJavaScriptNext.jsNext.js

      Few years ago we were building a Next.js site with a few simple forms. This required handling forms validation and submission, but instead of picking some forms library, we went with plain JavaScript and constraint validation API in HTML5. This shaved off a few KBs of dependencies and gave us full control over the validation behavior and look. I describe this approach, with its pros and cons, in a blog post.

      See more
      Jonathan Pugh
      Software Engineer / Project Manager / Technical Architect · | 25 upvotes · 3.1M views

      I needed to choose a full stack of tools for cross platform mobile application design & development. After much research and trying different tools, these are what I came up with that work for me today:

      For the client coding I chose Framework7 because of its performance, easy learning curve, and very well designed, beautiful UI widgets. I think it's perfect for solo development or small teams. I didn't like React Native. It felt heavy to me and rigid. Framework7 allows the use of #CSS3, which I think is the best technology to come out of the #WWW movement. No other tech has been able to allow designers and developers to develop such flexible, high performance, customisable user interface elements that are highly responsive and hardware accelerated before. Now #CSS3 includes variables and flexboxes it is truly a powerful language and there is no longer a need for preprocessors such as #SCSS / #Sass / #less. React Native contains a very limited interpretation of #CSS3 which I found very frustrating after using #CSS3 for some years already and knowing its powerful features. The other very nice feature of Framework7 is that you can even build for the browser if you want your app to be available for desktop web browsers. The latest release also includes the ability to build for #Electron so you can have MacOS, Windows and Linux desktop apps. This is not possible with React Native yet.

      Framework7 runs on top of Apache Cordova. Cordova and webviews have been slated as being slow in the past. Having a game developer background I found the tweeks to make it run as smooth as silk. One of those tweeks is to use WKWebView. Another important one was using srcset on images.

      I use #Template7 for the for the templating system which is a no-nonsense mobile-centric #HandleBars style extensible templating system. It's easy to write custom helpers for, is fast and has a small footprint. I'm not forced into a new paradigm or learning some new syntax. It operates with standard JavaScript, HTML5 and CSS 3. It's written by the developer of Framework7 and so dovetails with it as expected.

      I configured TypeScript to work with the latest version of Framework7. I consider TypeScript to be one of the best creations to come out of Microsoft in some time. They must have an amazing team working on it. It's very powerful and flexible. It helps you catch a lot of bugs and also provides code completion in supporting IDEs. So for my IDE I use Visual Studio Code which is a blazingly fast and silky smooth editor that integrates seamlessly with TypeScript for the ultimate type checking setup (both products are produced by Microsoft).

      I use Webpack and Babel to compile the JavaScript. TypeScript can compile to JavaScript directly but Babel offers a few more options and polyfills so you can use the latest (and even prerelease) JavaScript features today and compile to be backwards compatible with virtually any browser. My favorite recent addition is "optional chaining" which greatly simplifies and increases readability of a number of sections of my code dealing with getting and setting data in nested objects.

      I use some Ruby scripts to process images with ImageMagick and pngquant to optimise for size and even auto insert responsive image code into the HTML5. Ruby is the ultimate cross platform scripting language. Even as your scripts become large, Ruby allows you to refactor your code easily and make it Object Oriented if necessary. I find it the quickest and easiest way to maintain certain aspects of my build process.

      For the user interface design and prototyping I use Figma. Figma has an almost identical user interface to #Sketch but has the added advantage of being cross platform (MacOS and Windows). Its real-time collaboration features are outstanding and I use them a often as I work mostly on remote projects. Clients can collaborate in real-time and see changes I make as I make them. The clickable prototyping features in Figma are also very well designed and mean I can send clickable prototypes to clients to try user interface updates as they are made and get immediate feedback. I'm currently also evaluating the latest version of #AdobeXD as an alternative to Figma as it has the very cool auto-animate feature. It doesn't have real-time collaboration yet, but I heard it is proposed for 2019.

      For the UI icons I use Font Awesome Pro. They have the largest selection and best looking icons you can find on the internet with several variations in styles so you can find most of the icons you want for standard projects.

      For the backend I was using the #GraphCool Framework. As I later found out, #GraphQL still has some way to go in order to provide the full power of a mature graph query language so later in my project I ripped out #GraphCool and replaced it with CouchDB and Pouchdb. Primarily so I could provide good offline app support. CouchDB with Pouchdb is very flexible and efficient combination and overcomes some of the restrictions I found in #GraphQL and hence #GraphCool also. The most impressive and important feature of CouchDB is its replication. You can configure it in various ways for backups, fault tolerance, caching or conditional merging of databases. CouchDB and Pouchdb even supports storing, retrieving and serving binary or image data or other mime types. This removes a level of complexity usually present in database implementations where binary or image data is usually referenced through an #HTML5 link. With CouchDB and Pouchdb apps can operate offline and sync later, very efficiently, when the network connection is good.

      I use PhoneGap when testing the app. It auto-reloads your app when its code is changed and you can also install it on Android phones to preview your app instantly. iOS is a bit more tricky cause of Apple's policies so it's not available on the App Store, but you can build it and install it yourself to your device.

      So that's my latest mobile stack. What tools do you use? Have you tried these ones?

      See more
      D3.js logo

      D3.js

      1.9K
      653
      A JavaScript visualization library for HTML and SVG
      1.9K
      653
      PROS OF D3.JS
      • 195
        Beautiful visualizations
      • 103
        Svg
      • 92
        Data-driven
      • 81
        Large set of examples
      • 61
        Data-driven documents
      • 24
        Visualization components
      • 20
        Transitions
      • 18
        Dynamic properties
      • 16
        Plugins
      • 11
        Transformation
      • 7
        Makes data interactive
      • 4
        Open Source
      • 4
        Enter and Exit
      • 4
        Components
      • 3
        Exhaustive
      • 3
        Backed by the new york times
      • 2
        Easy and beautiful
      • 1
        Highly customizable
      • 1
        Awesome Community Support
      • 1
        Simple elegance
      • 1
        Templates, force template
      • 1
        Angular 4
      CONS OF D3.JS
      • 11
        Beginners cant understand at all
      • 6
        Complex syntax

      related D3.js posts

      Tim Abbott
      Shared insights
      on
      Plotly.jsPlotly.jsD3.jsD3.js
      at

      We use Plotly (just their open source stuff) for Zulip's user-facing and admin-facing statistics graphs because it's a reasonably well-designed JavaScript graphing library.

      If you've tried using D3.js, it's a pretty poor developer experience, and that translates to spending a bunch of time getting the graphs one wants even for things that are conceptually pretty basic. Plotly isn't amazing (it's decent), but it's way better than than D3 unless you have very specialized needs.

      See more
      Amit Garg
      Shared insights
      on
      D3.jsD3.jsApexChartsApexChartsReactReact

      Hi,

      I am looking at integrating a charting library in my React frontend that allows me to create appealing and interactive charts. I have basic familiarity with ApexCharts with React but have also read about D3.js charts and it seems a much more involved integration. Can someone please share their experience across the two libraries on the following dimensions:

      1. Amount of work needed for integration
      2. Amount of work or ease for creating new charts in either of the libraries.

      Regards

      Amit

      See more
      three.js logo

      three.js

      747
      0
      A JavaScript 3D library
      747
      0
      PROS OF THREE.JS
        Be the first to leave a pro
        CONS OF THREE.JS
          Be the first to leave a con

          related three.js posts

          Shared insights
          on
          BabylonJSBabylonJSthree.jsthree.jsUnityUnity

          We already have an existing 3d interactive application for windows, mac, and iOS devices and have planned to move that app to the web for high availability to different types of users. I have been searching for different options for it. Our existing application is made in Unity so we prefer to work on unity webgl but it also has its drawbacks. Other than that we are also thinking to change the tech stack to three.js or BabylonJS due to their high compatibility with the web ecosystem. I want to know which engine/library/framework we should use for the development of our 3d web application. Also with unity webgl, we want to develop all UI parts in web technologies only and will use the unity3d for 3d part only.

          Points that are very important to consider - 1. Memory optimization and allocation 2. Quality 3. Shaders 4. Materials 5. Lighting 6. Mesh editing, mesh creation at runtime 7. Ar 8. Vr 10. Support on different browsers including mobile browsers 11. Physics(gravity, collision, cloth simulation, etc.) 12. Initial load time 13. Speed and performance 14. Max vertices count. What happens when we load models exceeding max vertex count? 15. Development time 16. Learning curve (Unity3d we already working on) 17. Ease of use. What artists can do using any platform eg. in unity3d, artists can edit materials, set up lighting etc? 18. Future scope 19. Scalability 20. Integration with web ecosystem

          See more

          I want to build a web app with these features: - render a 3D object in the browser - when the user touches a part of the object I retrieve data or send API requesst to a database - get data in real-time from the backend and display it on the object - cache 3D object on the browser to avoid its loading (with cost)

          I'm more a JavaScript developer with a passion for React and Node.js ecosystem, So I want to know for this kind of project it is better to build it with Next.js+three.js for frontend and Nodes.js + Express + Prisma + PostgreSQL Or build it directly with the API functionalities of Next.js? I thought having these two separate parts will be more scalable and easy to maintain.

          Thanks.

          See more
          WebAssembly logo

          WebAssembly

          222
          0
          A binary instruction format for a stack-based virtual machine
          222
          0
          PROS OF WEBASSEMBLY
            Be the first to leave a pro
            CONS OF WEBASSEMBLY
            • 2
              Security issues

            related WebAssembly posts

            I'm really interested in building minimalistic web products with extra stuff like Stripe, MongoDB, solidity, WebAssembly and three.js.

            Want to choose my backend lang but am unable to choose, my requirement is:

            • fast dev
            • minimal
            • easy to learn
            • good for saas
            • huge community
            • scalable
            • fast and interactive
            • good job market (not important)
            See more
            jQuery logo

            jQuery

            193K
            6.6K
            The Write Less, Do More, JavaScript Library.
            193K
            6.6K
            PROS OF JQUERY
            • 1.3K
              Cross-browser
            • 957
              Dom manipulation
            • 809
              Power
            • 660
              Open source
            • 610
              Plugins
            • 459
              Easy
            • 395
              Popular
            • 350
              Feature-rich
            • 281
              Html5
            • 227
              Light weight
            • 93
              Simple
            • 84
              Great community
            • 79
              CSS3 Compliant
            • 69
              Mobile friendly
            • 67
              Fast
            • 43
              Intuitive
            • 42
              Swiss Army knife for webdev
            • 35
              Huge Community
            • 11
              Easy to learn
            • 4
              Clean code
            • 3
              Because of Ajax request :)
            • 2
              Powerful
            • 2
              Nice
            • 2
              Just awesome
            • 2
              Used everywhere
            • 1
              Improves productivity
            • 1
              Javascript
            • 1
              Easy Setup
            • 1
              Open Source, Simple, Easy Setup
            • 1
              It Just Works
            • 1
              Industry acceptance
            • 1
              Allows great manipulation of HTML and CSS
            • 1
              Widely Used
            • 1
              I love jQuery
            CONS OF JQUERY
            • 6
              Large size
            • 5
              Sometimes inconsistent API
            • 5
              Encourages DOM as primary data source
            • 2
              Live events is overly complex feature

            related jQuery posts

            Kir Shatrov
            Engineering Lead at Shopify · | 22 upvotes · 2.5M views

            The client-side stack of Shopify Admin has been a long journey. It started with HTML templates, jQuery and Prototype. We moved to Batman.js, our in-house Single-Page-Application framework (SPA), in 2013. Then, we re-evaluated our approach and moved back to statically rendered HTML and vanilla JavaScript. As the front-end ecosystem matured, we felt that it was time to rethink our approach again. Last year, we started working on moving Shopify Admin to React and TypeScript.

            Many things have changed since the days of jQuery and Batman. JavaScript execution is much faster. We can easily render our apps on the server to do less work on the client, and the resources and tooling for developers are substantially better with React than we ever had with Batman.

            #FrameworksFullStack #Languages

            See more
            Ganesa Vijayakumar
            Full Stack Coder | Technical Architect · | 19 upvotes · 5.7M views

            I'm planning to create a web application and also a mobile application to provide a very good shopping experience to the end customers. Shortly, my application will be aggregate the product details from difference sources and giving a clear picture to the user that when and where to buy that product with best in Quality and cost.

            I have planned to develop this in many milestones for adding N number of features and I have picked my first part to complete the core part (aggregate the product details from different sources).

            As per my work experience and knowledge, I have chosen the followings stacks to this mission.

            UI: I would like to develop this application using React, React Router and React Native since I'm a little bit familiar on this and also most importantly these will help on developing both web and mobile apps. In addition, I'm gonna use the stacks JavaScript, jQuery, jQuery UI, jQuery Mobile, Bootstrap wherever required.

            Service: I have planned to use Java as the main business layer language as I have 7+ years of experience on this I believe I can do better work using Java than other languages. In addition, I'm thinking to use the stacks Node.js.

            Database and ORM: I'm gonna pick MySQL as DB and Hibernate as ORM since I have a piece of good knowledge and also work experience on this combination.

            Search Engine: I need to deal with a large amount of product data and it's in-detailed info to provide enough details to end user at the same time I need to focus on the performance area too. so I have decided to use Solr as a search engine for product search and suggestions. In addition, I'm thinking to replace Solr by Elasticsearch once explored/reviewed enough about Elasticsearch.

            Host: As of now, my plan to complete the application with decent features first and deploy it in a free hosting environment like Docker and Heroku and then once it is stable then I have planned to use the AWS products Amazon S3, EC2, Amazon RDS and Amazon Route 53. I'm not sure about Microsoft Azure that what is the specialty in it than Heroku and Amazon EC2 Container Service. Anyhow, I will do explore these once again and pick the best suite one for my requirement once I reached this level.

            Build and Repositories: I have decided to choose Apache Maven and Git as these are my favorites and also so popular on respectively build and repositories.

            Additional Utilities :) - I would like to choose Codacy for code review as their Startup plan will be very helpful to this application. I'm already experienced with Google CheckStyle and SonarQube even I'm looking something on Codacy.

            Happy Coding! Suggestions are welcome! :)

            Thanks, Ganesa

            See more
            React logo

            React

            175.2K
            4.1K
            A JavaScript library for building user interfaces
            175.2K
            4.1K
            PROS OF REACT
            • 837
              Components
            • 673
              Virtual dom
            • 578
              Performance
            • 509
              Simplicity
            • 442
              Composable
            • 186
              Data flow
            • 166
              Declarative
            • 128
              Isn't an mvc framework
            • 120
              Reactive updates
            • 115
              Explicit app state
            • 50
              JSX
            • 29
              Learn once, write everywhere
            • 22
              Easy to Use
            • 21
              Uni-directional data flow
            • 17
              Works great with Flux Architecture
            • 11
              Great perfomance
            • 10
              Javascript
            • 9
              Built by Facebook
            • 8
              TypeScript support
            • 6
              Speed
            • 6
              Server Side Rendering
            • 6
              Scalable
            • 5
              Easy to start
            • 5
              Feels like the 90s
            • 5
              Awesome
            • 5
              Props
            • 5
              Cross-platform
            • 5
              Closer to standard JavaScript and HTML than others
            • 5
              Easy as Lego
            • 5
              Functional
            • 5
              Excellent Documentation
            • 5
              Hooks
            • 4
              Scales super well
            • 4
              Allows creating single page applications
            • 4
              Sdfsdfsdf
            • 4
              Start simple
            • 4
              Strong Community
            • 4
              Super easy
            • 4
              Server side views
            • 4
              Fancy third party tools
            • 3
              Rich ecosystem
            • 3
              Has arrow functions
            • 3
              Very gentle learning curve
            • 3
              Beautiful and Neat Component Management
            • 3
              Just the View of MVC
            • 3
              Simple, easy to reason about and makes you productive
            • 3
              Fast evolving
            • 3
              SSR
            • 3
              Great migration pathway for older systems
            • 3
              Simple
            • 3
              Has functional components
            • 3
              Every decision architecture wise makes sense
            • 2
              Sharable
            • 2
              Permissively-licensed
            • 2
              HTML-like
            • 2
              Image upload
            • 2
              Recharts
            • 2
              Fragments
            • 2
              Split your UI into components with one true state
            • 1
              React hooks
            • 1
              Datatables
            CONS OF REACT
            • 41
              Requires discipline to keep architecture organized
            • 30
              No predefined way to structure your app
            • 29
              Need to be familiar with lots of third party packages
            • 13
              JSX
            • 10
              Not enterprise friendly
            • 6
              One-way binding only
            • 3
              State consistency with backend neglected
            • 3
              Bad Documentation
            • 2
              Error boundary is needed
            • 2
              Paradigms change too fast

            related React posts

            Johnny Bell

            I was building a personal project that I needed to store items in a real time database. I am more comfortable with my Frontend skills than my backend so I didn't want to spend time building out anything in Ruby or Go.

            I stumbled on Firebase by #Google, and it was really all I needed. It had realtime data, an area for storing file uploads and best of all for the amount of data I needed it was free!

            I built out my application using tools I was familiar with, React for the framework, Redux.js to manage my state across components, and styled-components for the styling.

            Now as this was a project I was just working on in my free time for fun I didn't really want to pay for hosting. I did some research and I found Netlify. I had actually seen them at #ReactRally the year before and deployed a Gatsby site to Netlify already.

            Netlify was very easy to setup and link to my GitHub account you select a repo and pretty much with very little configuration you have a live site that will deploy every time you push to master.

            With the selection of these tools I was able to build out my application, connect it to a realtime database, and deploy to a live environment all with $0 spent.

            If you're looking to build out a small app I suggest giving these tools a go as you can get your idea out into the real world for absolutely no cost.

            See more
            Collins Ogbuzuru
            Front-end dev at Evolve credit · | 48 upvotes · 348.5K views

            Your tech stack is solid for building a real-time messaging project.

            React and React Native are excellent choices for the frontend, especially if you want to have both web and mobile versions of your application share code.

            ExpressJS is an unopinionated framework that affords you the flexibility to use it's features at your term, which is a good start. However, I would recommend you explore Sails.js as well. Sails.js is built on top of Express.js and it provides additional features out of the box, especially the Websocket integration that your project requires.

            Don't forget to set up Graphql codegen, this would improve your dev experience (Add Typescript, if you can too).

            I don't know much about databases but you might want to consider using NO-SQL. I used Firebase real-time db and aws dynamo db on a few of my personal projects and I love they're easy to work with and offer more flexibility for a chat application.

            See more
            AngularJS logo

            AngularJS

            61.3K
            5.3K
            Superheroic JavaScript MVW Framework
            61.3K
            5.3K
            PROS OF ANGULARJS
            • 889
              Quick to develop
            • 589
              Great mvc
            • 573
              Powerful
            • 520
              Restful
            • 505
              Backed by google
            • 349
              Two-way data binding
            • 343
              Javascript
            • 329
              Open source
            • 307
              Dependency injection
            • 197
              Readable
            • 75
              Fast
            • 65
              Directives
            • 63
              Great community
            • 57
              Free
            • 38
              Extend html vocabulary
            • 29
              Components
            • 26
              Easy to test
            • 25
              Easy to learn
            • 24
              Easy to templates
            • 23
              Great documentation
            • 21
              Easy to start
            • 19
              Awesome
            • 18
              Light weight
            • 15
              Angular 2.0
            • 14
              Efficient
            • 14
              Javascript mvw framework
            • 14
              Great extensions
            • 11
              Easy to prototype with
            • 9
              High performance
            • 9
              Coffeescript
            • 8
              Two-way binding
            • 8
              Lots of community modules
            • 8
              Mvc
            • 7
              Easy to e2e
            • 7
              Clean and keeps code readable
            • 6
              One of the best frameworks
            • 6
              Easy for small applications
            • 5
              Works great with jquery
            • 5
              Fast development
            • 4
              I do not touch DOM
            • 4
              The two-way Data Binding is awesome
            • 3
              Hierarchical Data Structure
            • 3
              Be a developer, not a plumber.
            • 3
              Declarative programming
            • 3
              Typescript
            • 3
              Dart
            • 3
              Community
            • 2
              Fkin awesome
            • 2
              Opinionated in the right areas
            • 2
              Supports api , easy development
            • 2
              Common Place
            • 2
              Very very useful and fast framework for development
            • 2
              Linear learning curve
            • 2
              Great
            • 2
              Amazing community support
            • 2
              Readable code
            • 2
              Programming fun again
            • 2
              The powerful of binding, routing and controlling routes
            • 2
              Scopes
            • 2
              Consistency with backend architecture if using Nest
            • 1
              Fk react, all my homies hate react
            CONS OF ANGULARJS
            • 12
              Complex
            • 3
              Event Listener Overload
            • 3
              Dependency injection
            • 2
              Hard to learn
            • 2
              Learning Curve

            related AngularJS posts

            Simon Reymann
            Senior Fullstack Developer at QUANTUSflow Software GmbH · | 27 upvotes · 5.5M views

            Our whole Node.js backend stack consists of the following tools:

            • Lerna as a tool for multi package and multi repository management
            • npm as package manager
            • NestJS as Node.js framework
            • TypeScript as programming language
            • ExpressJS as web server
            • Swagger UI for visualizing and interacting with the API’s resources
            • Postman as a tool for API development
            • TypeORM as object relational mapping layer
            • JSON Web Token for access token management

            The main reason we have chosen Node.js over PHP is related to the following artifacts:

            • Made for the web and widely in use: Node.js is a software platform for developing server-side network services. Well-known projects that rely on Node.js include the blogging software Ghost, the project management tool Trello and the operating system WebOS. Node.js requires the JavaScript runtime environment V8, which was specially developed by Google for the popular Chrome browser. This guarantees a very resource-saving architecture, which qualifies Node.js especially for the operation of a web server. Ryan Dahl, the developer of Node.js, released the first stable version on May 27, 2009. He developed Node.js out of dissatisfaction with the possibilities that JavaScript offered at the time. The basic functionality of Node.js has been mapped with JavaScript since the first version, which can be expanded with a large number of different modules. The current package managers (npm or Yarn) for Node.js know more than 1,000,000 of these modules.
            • Fast server-side solutions: Node.js adopts the JavaScript "event-loop" to create non-blocking I/O applications that conveniently serve simultaneous events. With the standard available asynchronous processing within JavaScript/TypeScript, highly scalable, server-side solutions can be realized. The efficient use of the CPU and the RAM is maximized and more simultaneous requests can be processed than with conventional multi-thread servers.
            • A language along the entire stack: Widely used frameworks such as React or AngularJS or Vue.js, which we prefer, are written in JavaScript/TypeScript. If Node.js is now used on the server side, you can use all the advantages of a uniform script language throughout the entire application development. The same language in the back- and frontend simplifies the maintenance of the application and also the coordination within the development team.
            • Flexibility: Node.js sets very few strict dependencies, rules and guidelines and thus grants a high degree of flexibility in application development. There are no strict conventions so that the appropriate architecture, design structures, modules and features can be freely selected for the development.
            See more
            Simon Reymann
            Senior Fullstack Developer at QUANTUSflow Software GmbH · | 24 upvotes · 5M views

            Our whole Vue.js frontend stack (incl. SSR) consists of the following tools:

            • Nuxt.js consisting of Vue CLI, Vue Router, vuex, Webpack and Sass (Bundler for HTML5, CSS 3), Babel (Transpiler for JavaScript),
            • Vue Styleguidist as our style guide and pool of developed Vue.js components
            • Vuetify as Material Component Framework (for fast app development)
            • TypeScript as programming language
            • Apollo / GraphQL (incl. GraphiQL) for data access layer (https://apollo.vuejs.org/)
            • ESLint, TSLint and Prettier for coding style and code analyzes
            • Jest as testing framework
            • Google Fonts and Font Awesome for typography and icon toolkit
            • NativeScript-Vue for mobile development

            The main reason we have chosen Vue.js over React and AngularJS is related to the following artifacts:

            • Empowered HTML. Vue.js has many similar approaches with Angular. This helps to optimize HTML blocks handling with the use of different components.
            • Detailed documentation. Vue.js has very good documentation which can fasten learning curve for developers.
            • Adaptability. It provides a rapid switching period from other frameworks. It has similarities with Angular and React in terms of design and architecture.
            • Awesome integration. Vue.js can be used for both building single-page applications and more difficult web interfaces of apps. Smaller interactive parts can be easily integrated into the existing infrastructure with no negative effect on the entire system.
            • Large scaling. Vue.js can help to develop pretty large reusable templates.
            • Tiny size. Vue.js weights around 20KB keeping its speed and flexibility. It allows reaching much better performance in comparison to other frameworks.
            See more