Skip to content

Commit 09984fe

Browse files
committed
Fix typo on README's instructions and update dependencies
1 parent 006ec0a commit 09984fe

File tree

4 files changed

+210
-214
lines changed

4 files changed

+210
-214
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ os:
55
language: node_js
66
node_js:
77
- node
8+
- 12
9+
- 11
810
- 10
911
- 8
1012
after_success: npm run coveralls

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ serve ~/myproj
2727
### Binaries
2828
If you don't have Node.js installed just use a packaged version! Download it from the [release page](https://github.com/daquinoaldo/https-localhost/releases).
2929
```
30-
// Linux
30+
# Linux
3131
./https-localhost-linux ~/myproj
3232
33-
// MacOS
33+
# MacOS
3434
./https-localhost-macos ~/myproj
3535
36-
// Windows
36+
# Windows
3737
./https-localhost-win.exe C:\User\me\myproj
3838
```
3939
**Tip 1:** on Windows just drag the folder on the executable to serve itV.
@@ -48,7 +48,7 @@ npm i -s https-localhost
4848
Then put in your `index.js` file:
4949
```
5050
const httpsLocalhost = require("https-localhost")
51-
const app = httpLocalhost()
51+
const app = httpsLocalhost()
5252
// app is an express app, do what you usually do with express
5353
app.listen(port)
5454
```

0 commit comments

Comments
 (0)