Difference between revisions of "Our SPA"
From Organic Design wiki
(Technology stack) |
m (→Technology stack) |
||
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]. Vue uses [https://webpack.js.org/ WebpackJS] to integrate more tightly with NodeJS and it's build process. |
Revision as of 17:52, 26 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. Vue uses WebpackJS to integrate more tightly with NodeJS and it's build process.