clwy-express-generator 5.0.7 → 5.0.9
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 +8 -4
- package/package.json +2 -1
- package/templates/README.md +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
[](http://expressjs.com/)
|
|
2
2
|
|
|
3
|
-
[Express](https://www.npmjs.com/package/express) 应用程序生成器。
|
|
3
|
+
# [Express](https://www.npmjs.com/package/express) 应用程序生成器。
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**此项目基于 [express-generator](https://github.com/expressjs/generator) 分叉而来,并新增了一些功能特性。**
|
|
6
|
+
|
|
7
|
+
**其中,ES6 支持的实现参考了 [Dr. Jeff Jackson](https://github.com/drjeffjackson) 提交的 [Pull Request](https://github.com/expressjs/generator/pull/316),并在其基础上进行了进一步优化和调整。**
|
|
6
8
|
|
|
7
9
|
## 功能特性
|
|
8
10
|
|
|
@@ -52,9 +54,11 @@ $ npm start
|
|
|
52
54
|
|
|
53
55
|
------------
|
|
54
56
|
|
|
55
|
-
[Express'](https://www.npmjs.com/package/express) application generator.
|
|
57
|
+
# [Express'](https://www.npmjs.com/package/express) application generator.
|
|
58
|
+
|
|
59
|
+
**This project is a fork of [express-generator](https://github.com/expressjs/generator), enhanced with new features.**
|
|
56
60
|
|
|
57
|
-
|
|
61
|
+
**The ES6 support was adapted and improved from [Dr Jeff Jackson](https://github.com/drjeffjackson)'s [Pull Request](https://github.com/expressjs/generator/pull/316).**
|
|
58
62
|
|
|
59
63
|
## Features
|
|
60
64
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "clwy-express-generator",
|
|
3
3
|
"description": "Express' application generator",
|
|
4
4
|
"homepage": "https://github.com/clwy-cn/clwy-express-generator",
|
|
5
|
-
"version": "5.0.
|
|
5
|
+
"version": "5.0.9",
|
|
6
6
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
|
7
7
|
"contributors": [
|
|
8
8
|
"Aaron Heckmann <aaron.heckmann+github@gmail.com>",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"Guillermo Rauch <rauchg@gmail.com>",
|
|
12
12
|
"Jonathan Ong <me@jongleberry.com>",
|
|
13
13
|
"Roman Shtylman <shtylman+expressjs@gmail.com>",
|
|
14
|
+
"Dr Jeff Jackson",
|
|
14
15
|
"Liu Dong <canonpd@gmail.com>"
|
|
15
16
|
],
|
|
16
17
|
"keywords": [
|
package/templates/README.md
CHANGED