Difference between revisions of "Our SPA"
(see also) |
(npm) |
||
Line 4: | Line 4: | ||
Our system uses [[NodeJS]] on the server side with [https://feathersjs.com/ FeathersJS] for authentication (using [http://expressjs.com/ ExpressJS]) and real-time bidirectional communications (using [https://socket.io/ SocketIO]). We use [https://www.mongodb.com/ MongoDB] for our ''no-SQL'' database layer and [http://mongoosejs.com/ Mongoose] to integrate it with NodeJS. | Our system uses [[NodeJS]] on the server side with [https://feathersjs.com/ FeathersJS] for authentication (using [http://expressjs.com/ ExpressJS]) and real-time bidirectional communications (using [https://socket.io/ SocketIO]). We use [https://www.mongodb.com/ MongoDB] for our ''no-SQL'' database layer and [http://mongoosejs.com/ Mongoose] to integrate it with NodeJS. | ||
− | On the client side we use the [[VueJS]] framework for templating and component model with the [https://router.vuejs.org Vue router] and [https://vuex.vuejs.org Vuex storage layer]. | + | On the client side we use the [[VueJS]] framework for templating and component model with the [https://router.vuejs.org Vue router] and [https://vuex.vuejs.org Vuex storage layer]. |
+ | |||
+ | To manage all our separate source files, assets and dependencies we use [https://www.npmjs.com/ NPM] (Node package manager) for the server side and [https://webpack.js.org/ WebpackJS] (see also [https://dev.to/nitishdayal/stages-of-learning-webpack-pt-2---the-config this] noob intro) on the client side which also integrates more tightly with NodeJS and it's build process. | ||
== See also == | == See also == |
Revision as of 15:17, 27 July 2017
We're currently working in a number of apps which are in the form of a Single Page Application. This article describes the common SPA structure we're using for such projects.
Technology stack
Our system uses NodeJS on the server side with FeathersJS for authentication (using ExpressJS) and real-time bidirectional communications (using SocketIO). We use MongoDB for our no-SQL database layer and Mongoose to integrate it with NodeJS.
On the client side we use the VueJS framework for templating and component model with the Vue router and Vuex storage layer.
To manage all our separate source files, assets and dependencies we use NPM (Node package manager) for the server side and WebpackJS (see also this noob intro) on the client side which also integrates more tightly with NodeJS and it's build process.