Skip to content

Commit 4544407

Browse files
committed
Updates readme and package.json
1 parent 7252058 commit 4544407

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `choo-express-ssr`
22

3-
A simple boilerplate for [Choo](https://github.com/choojs/choo)
3+
A simple SSR ready boilerplate for [Choo](https://github.com/choojs/choo)
44

55
Heavily inspired by [Firefox Send](https://github.com/mozilla/send)
66

@@ -13,6 +13,12 @@ npm install
1313
npm start
1414
```
1515

16+
## Why
17+
18+
A lot of setups out there are ideal for client side only applications.
19+
20+
But some projects require a backend server, thus this boilerplate project.
21+
1622
## License
1723

1824
[MIT](https://poyu.mit-license.org)

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "choo-express-ssr",
33
"version": "1.0.0",
4-
"description": "",
4+
"description": "Simple project boilerplate for Choo & Express with SSR",
55
"main": "index.js",
66
"scripts": {
77
"start": "npm run clean && NODE_ENV=development webpack-dev-server",
@@ -10,9 +10,13 @@
1010
"prod": "NODE_ENV=production node ./server/prod.js",
1111
"test": "echo \"Error: no test specified\" && exit 1"
1212
},
13-
"keywords": [],
13+
"keywords": ["choo", "ssr", "express"],
1414
"author": "Poyu Chen <[email protected]>",
1515
"license": "MIT",
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/applefreak/choo-express-ssr.git"
19+
},
1620
"dependencies": {
1721
"choo": "^6.12.1",
1822
"convict": "^4.3.0",

0 commit comments

Comments
 (0)