Skip to content

Commit af30471

Browse files
author
Rahul Singh
committed
package update
1 parent bb2b4b2 commit af30471

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

.npmignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.esm-cache
2+
.vscode
3+
node_modules
4+
build
5+
*.log
6+
dist
7+
TODO.md
8+
/nbproject/
9+
/package-lock.json
10+
/.idea/
11+
/.idea/*

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,31 @@ yarn create nodejs-structure <project name>
3838
yarn create is available in Yarn 0.25+
3939

4040

41+
##<a href="https://www.npmjs.com/package/create-nodejs-project-module">Steps for creation module for this structure</a>
42+
43+
44+
```bash
45+
cd node_demo/lib/module
46+
```
47+
48+
#### npx
49+
```bash
50+
npx create-nodejs-project-module node_demo
51+
```
52+
53+
#### npm
54+
```bash
55+
npm init nodejs-project-module <module name>
56+
```
57+
58+
59+
#### yarn
60+
```bash
61+
yarn create nodejs-project-module <module name>
62+
```
63+
64+
65+
4166
[npm-image]: https://img.shields.io/npm/v/create-nodejs-structure
4267
[npm-url]: https://www.npmjs.com/package/create-nodejs-structure
4368
[node-image]: https://img.shields.io/node/v/create-nodejs-structure

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-nodejs-structure",
33
"description": "Initialize a node structure with create-nodejs-structure",
4-
"version": "1.0.13",
4+
"version": "1.0.14",
55
"license": "MIT",
66
"author": {
77
"name": "Rahul Singh"

0 commit comments

Comments
 (0)