Difference between revisions of "MERN"

From air
Jump to navigation Jump to search
(Created page with "'''MERN is a scaffolding tool which makes it easy to build isomorphic apps using MongoDB, Express, React.js and Node.JS''' http://mern.io/#intro")
 
Line 2: Line 2:
   
 
http://mern.io/#intro
 
http://mern.io/#intro
  +
  +
=Setup=
  +
  +
<pre>
  +
  +
npm install -g mern-cli
  +
mern myFirstApp
  +
cd myFirstApp
  +
npm install
  +
npm start
  +
  +
</pre>

Revision as of 09:06, 21 February 2016

MERN is a scaffolding tool which makes it easy to build isomorphic apps using MongoDB, Express, React.js and Node.JS

http://mern.io/#intro

Setup


npm install -g mern-cli
mern myFirstApp
cd myFirstApp
npm install
npm start