You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A CLI for getting started with MERN stack. It offers a [super simple boilerplate project](https://github.com/Hashnode/mern-starter) and additional utilities to get started with isomorphic React and Redux apps.
@@ -8,10 +8,17 @@ A CLI for getting started with MERN stack. It offers a [super simple boilerplate
8
8
npm install -g mern-cli
9
9
```
10
10
11
+
Available Commands
12
+
```
13
+
init [name] -t=<variant_name> Initialize a MERN project (Default variant: mern-starter).
14
+
list List MERN variants
15
+
search [term] Search for a MERN variant
16
+
info [term] View details of a MERN variant
17
+
```
11
18
12
-
Create a new app
19
+
Create a new app with default `mern-starter`
13
20
```
14
-
mern my_app
21
+
mern init my_app
15
22
```
16
23
17
24
Install Dependencies
@@ -23,13 +30,16 @@ cd my_app && npm install
23
30
24
31
Generate React components, Express routes and controllers and Mongoose models using mern generator.
0 commit comments