File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ The simplest way to get started is to use `npx`:
1515
1616#### npx
1717``` bash
18- npx create-nodejs-project-module node_demo
18+ npx create-nodejs-project-module < module name >
1919```
2020
2121#### npm
Original file line number Diff line number Diff line change 11{
22 "name" : " create-nodejs-project-module" ,
33 "description" : " Initialize a nodejs module with create-nodejs-module for this node structure(https://github.com/rahul2104/demo-node)" ,
4- "version" : " 1.0.2 " ,
4+ "version" : " 1.0.4 " ,
55 "license" : " MIT" ,
66 "author" : {
77 "name" : " Rahul Singh"
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ var constants = require("../../../constant");
44var Schema = mongoose . Schema ;
55
66var StatesSchema = new Schema ( {
7- countryId :{ type : Schema . Types . ObjectId , ref : constants . DB_MODEL_REF . COUNTRIES } ,
8- stateId :{ type : Schema . Types . ObjectId , ref : constants . DB_MODEL_REF . STATES } ,
97 stateName : { type : String , index :true } ,
108 rangeName : { type : String , index :true } ,
119 districtName : { type : String } ,
You can’t perform that action at this time.
0 commit comments