Last active
February 21, 2021 03:20
-
-
Save zentala/43123e44eaf6fa09f01baaa2b3502966 to your computer and use it in GitHub Desktop.
Node.js HTTP server without coding
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "simple-server", | |
"version": "1.0.0", | |
"main": "index.js", | |
"license": "MIT", | |
"scripts": { | |
"start": "node node_modules/http-server/bin/http-server ./public/" | |
}, | |
"dependencies": { | |
"http-server": "^0.11.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment