Do you need a full stack solution that is easy to build and all javascript? Then you're in the right place with Mean Stack JS. There is no steep learning curve and it only takes an average of 10 minutes to get your base code up and running. We've made the development process as simple and scalable as possible. This is perfect for anyone involved in software development, including User Experience Designers, Quality Assurance Engineers, Software Engineers, Frontend Developers, Backend Developers and Full Stack Engineers.
Start learning with documentation:
Start visualizing what the meanstack can do for you with our demo
Check out this YouTube channel that has content to help you:
- Subscribe to our Youtube Channel - MeanStackJs
- Watch MeanStackJS - How to series
- Watch MeanStackJS - Error series
- Watch MeanStackJS - What is series
For more control or something more basic, start here instead:
For the Api version, start here instead:
Want more content?
- MongoDB - MongoDB is the leading NoSQL database, empowering businesses to be more agile and scalable
- Express - Express is a minimal and flexible node.js web application framework, providing a robust set of features for building single and multi-page, and hybrid web applications
- AngularJS - based framework. -AngularJS lets you extend HTML vocabulary for your application. The resulting environment is extraordinarily expressive, readable, and quick to develop
- Node.js - Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications
Check Demo Here Check Documentation Here
-
Download and Install mongodb - Checkout their manual if you're just starting
-
Download and Install Node.js - nodeschool has free node tutorials to get you started
$ npm install -g bower
Note: If you are new to Node or Express, we recommend to watch Node.js and Express 101 screencast by Alex Ford that teaches Node and Express from scratch. Alternatively, here is another great tutorial for complete beginners - Getting Started With Node.js, Express, MongoDB.
Check Documentation Here Check Demo Here
The easiest way to get started is to clone the repository:
# Get the latest snapshot
git clone https://github.com/greenpioneersolutions/meanstackjs.git
# Change directory
cd meanstackjs
# Install NPM dependencies
npm install
# Start up the server
npm start
# or
node index.js
# or
nodemon index.js
Note: We highly recommend installing Nodemon.
It watches for any changes in your node.js app and automatically restarts the
server. Once installed, instead of node index.js
use nodemon index.js
. It will
save you a lot of time in the long run, because you won't need to manually
restart the server each time you make a small change in code. To install, run
sudo npm install -g nodemon
.