create-sip 0.10.0 → 0.10.2
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/README.md +4 -1
- package/expressapi/README.md +4 -0
- package/expressapi/docs/user_doc.md +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# create-sip
|
|
2
2
|
|
|
3
|
-
Simple
|
|
3
|
+
Simple project generator.
|
|
4
|
+
|
|
5
|
+
## Project types
|
|
4
6
|
|
|
5
7
|
* Simple webpage. index.html and style.css
|
|
6
8
|
* Webpage with Bootstrap with CDN.
|
|
@@ -9,6 +11,7 @@ Simple projekct generator.
|
|
|
9
11
|
* ESBuild and Javascript project for webpage.
|
|
10
12
|
* ESBuild and Typescript project for webpage.
|
|
11
13
|
* Mock REST API server.
|
|
14
|
+
* Express.js REST API start server.
|
|
12
15
|
|
|
13
16
|
## Using
|
|
14
17
|
|
package/expressapi/README.md
CHANGED