Installing Web Server

After install Node.js and npm Package Manager at previous step, now you have to install some tools, dependencies to run the Kindie web server:

Step 1: Open Kindie project by Visual Studio Code:

Note: You can toogle terminal by hot keys Ctrl + `

Note: You can toogle terminal by hot keys Ctrl + `

Step 2: Install Sails.js using npm Package Manager:

npm -g install sails

Sails.js is a small framework build on top of Express and Node.js framework. You can refer full document about SailsJs here:

Step 3: Install others npm Package Manager:

npm install

Step 4: Run MongoDB server

To start MongoDB, run mongod.exe. For example, from the Command Prompt:

C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe

This starts the main MongoDB database process. The waiting for connections message in the console output indicates that the mongod.exe process is running successfully.

You can refer full document about MongoDB here:

https://docs.mongodb.com/v3.6/installation/

Last updated