create-sip 0.10.1 → 0.10.3
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
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/package.json
CHANGED
|
@@ -10,17 +10,17 @@ Licenc: MIT
|
|
|
10
10
|
-->
|
|
11
11
|
|
|
12
12
|
<!DOCTYPE html>
|
|
13
|
-
<html lang="
|
|
13
|
+
<html lang="en">
|
|
14
14
|
<head>
|
|
15
15
|
<meta charset="UTF-8">
|
|
16
|
-
<title>
|
|
16
|
+
<title>Sip</title>
|
|
17
17
|
<link rel="stylesheet" href="bootstrap.css">
|
|
18
18
|
<link rel="stylesheet" href="style.css">
|
|
19
19
|
</head>
|
|
20
20
|
<body>
|
|
21
21
|
<div class="container">
|
|
22
|
-
<h1>
|
|
23
|
-
<p>The website generated by
|
|
22
|
+
<h1>Sip</h1>
|
|
23
|
+
<p>The website generated by Sip.</p>
|
|
24
24
|
|
|
25
25
|
</div>
|
|
26
26
|
<script src="bootstrap.js"></script>
|
|
@@ -10,17 +10,17 @@ Licenc: MIT
|
|
|
10
10
|
-->
|
|
11
11
|
|
|
12
12
|
<!DOCTYPE html>
|
|
13
|
-
<html lang="
|
|
13
|
+
<html lang="en">
|
|
14
14
|
<head>
|
|
15
15
|
<meta charset="UTF-8">
|
|
16
|
-
<title>
|
|
16
|
+
<title>Sip</title>
|
|
17
17
|
<link rel="stylesheet" href="bootstrap.css">
|
|
18
18
|
<link rel="stylesheet" href="style.css">
|
|
19
19
|
</head>
|
|
20
20
|
<body>
|
|
21
21
|
<div class="container">
|
|
22
|
-
<h1>
|
|
23
|
-
<p>The website generated by
|
|
22
|
+
<h1>Sip</h1>
|
|
23
|
+
<p>The website generated by Sip.</p>
|
|
24
24
|
|
|
25
25
|
</div>
|
|
26
26
|
<script src="bootstrap.js"></script>
|
package/webnodejs/src/index.html
CHANGED