Skip to content

Commit 37f3259

Browse files
author
Rahul Singh
committed
setup
0 parents  commit 37f3259

14 files changed

+1148
-0
lines changed

.gitignore

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/*

.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/*

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"useTabs": false,
3+
"printWidth": 80,
4+
"tabWidth": 2,
5+
"singleQuote": true,
6+
"trailingComma": "all",
7+
"jsxBracketSameLine": true,
8+
"parser": "typescript",
9+
"semi": false,
10+
"rcVerbose": false
11+
}

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Rahul Singh
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
Create Nodejs Project Module
2+
=====================
3+
4+
[![NPM Version][npm-image]][npm-url]
5+
[![Node Version][node-image]][node-url]
6+
[![NPM Downloads][downloads-image]][downloads-url]
7+
[![NPM License][npm-license]][npm-url]
8+
9+
Initialize a nodejs module with create-nodejs-module for this node structure(https://github.com/rahul2104/demo-node)
10+
11+
How To Start
12+
---------------
13+
14+
The simplest way to get started is to use `npx`:
15+
16+
#### npx
17+
```bash
18+
npx create-nodejs-project-module node_demo
19+
npm start
20+
```
21+
22+
#### npm
23+
```bash
24+
npm init nodejs-project-module <module name>
25+
```
26+
npm init <initializer> is available in npm 6+
27+
28+
29+
#### yarn
30+
```bash
31+
yarn create nodejs-project-module <module name>
32+
```
33+
yarn create is available in Yarn 0.25+
34+
35+
[npm-image]: https://img.shields.io/npm/v/create-nodejs-project-module
36+
[npm-url]: https://www.npmjs.com/package/create-nodejs-project-module
37+
[node-image]: https://img.shields.io/node/v/create-nodejs-project-module
38+
[node-url]: https://www.npmjs.com/package/create-nodejs-project-module
39+
[downloads-image]: https://img.shields.io/npm/dm/create-nodejs-project-module.svg
40+
[downloads-url]: https://github.com/rahul2104/demo-node
41+
[npm-license]:https://img.shields.io/npm/l/create-nodejs-project-module

0 commit comments

Comments
 (0)