Skip to content

Commit 2154608

Browse files
authored
initial version
1 parent 9f2fc66 commit 2154608

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Coverage Status](https://coveralls.io/repos/github/h5bp/create-html5-boilerplate/badge.svg?branch=master)](https://coveralls.io/github/h5bp/create-html5-boilerplate?branch=master)
44

5-
Quick start for HTML5 Boilerplate. Get up in running with one command.
5+
Quick start for HTML5 Boilerplate. Get up and running with one command.
66

77
## Getting Started
88

@@ -14,6 +14,7 @@ Using `npx`
1414
```sh
1515
npx create-html5-boilperlate new-site
1616
cd new-site
17+
npm install
1718
npm start
1819
```
1920

@@ -22,6 +23,7 @@ Using `npm init`
2223
```sh
2324
npm init create-html5-boilperlate new-site
2425
cd new-site
26+
npm install
2527
npm start
2628
```
2729

@@ -30,6 +32,7 @@ Using yarn
3032
```sh
3133
yarn create html5-boilperlate new-site
3234
cd new-site
35+
npm install
3336
npm start
3437
```
3538

@@ -56,5 +59,17 @@ Then you can use create-html5-boilerplate as in the following example
5659
```sh
5760
create-html5-boilperlate new-site
5861
cd new-site
62+
npm install
63+
npm start
64+
```
65+
66+
## Installing Specific Versions
67+
68+
You can also install a specific version:
69+
70+
```sh
71+
npx create-html5-boilerplate new-site --release=7.2.0
72+
cd new-site
73+
npm install
5974
npm start
6075
```

0 commit comments

Comments
 (0)