server-up-ndot 1.1.6 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +54 -25
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -1,25 +1,54 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
# server-up-ndot
|
|
2
|
+
|
|
3
|
+
Simple server generator and auto library install for Node.js.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
server library install:
|
|
8
|
+
```bash
|
|
9
|
+
npm install server-up-ndot
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
Create a new server project:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx server-up-ndot create <project-folder>
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Example:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npx server-up-ndot create myserver
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Patch Notes
|
|
27
|
+
|
|
28
|
+
### 1.1.8
|
|
29
|
+
- typo correction
|
|
30
|
+
|
|
31
|
+
### 1.1.7
|
|
32
|
+
- edit readme.md
|
|
33
|
+
|
|
34
|
+
### 1.1.6
|
|
35
|
+
- **real** edit `README.md` (* ̄∇ ̄)ノ
|
|
36
|
+
|
|
37
|
+
### 1.1.5
|
|
38
|
+
- Edit `README.md`
|
|
39
|
+
- New sample code
|
|
40
|
+
|
|
41
|
+
### 1.1.4
|
|
42
|
+
- Fix security issues
|
|
43
|
+
- deleted package `node-fetch`
|
|
44
|
+
- deleted package `formdata-polyfill`
|
|
45
|
+
- deleted package `fetch-blob`
|
|
46
|
+
|
|
47
|
+
### 1.1.3
|
|
48
|
+
- Fix security issues
|
|
49
|
+
- deleted package `koa`
|
|
50
|
+
|
|
51
|
+
### 1.1.2
|
|
52
|
+
- Fix security issues
|
|
53
|
+
- deleted package `body-parser`
|
|
54
|
+
- Fix license
|