https://github.com/nuclearredeye/express
An experiment to learn more about express.js
https://github.com/nuclearredeye/express
Last synced: 8 months ago
JSON representation
An experiment to learn more about express.js
- Host: GitHub
- URL: https://github.com/nuclearredeye/express
- Owner: NuclearRedeye
- License: mit
- Created: 2022-04-28T10:47:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-28T10:57:00.000Z (about 4 years ago)
- Last Synced: 2025-06-21T16:44:01.337Z (12 months ago)
- Language: TypeScript
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Express Experiment
An experiment to learn more about express.js.
## Prerequisites
* You have a Linux or OSX machine. Windows should be supported but has not been tested.
* You have installed a recent version of [NVM](https://github.com/nvm-sh/nvm).
* You have installed a recent version of [Docker](https://www.docker.com/).
## Quick Start
```
nvm install && nvm use
npm install
npm run debug
```
You can then make requests to the server on http://localhost/users.
Alternatively, you can bundler the project into a container.
```sh
npm run release
docker build . -t nuclearredeye/express:local
docker run --rm -it -p 8080:80 nuclearredeye/express:local
```
You can then make requests to the server on http://localhost:8080/users.
## License
Licensed under [MIT](https://choosealicense.com/licenses/mit/)