CoolFace
Apppublic

jbilcke-hf/template-node-express

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
README.md40 linesDownload Raw Back to root
1---2title: Template Node Express3emoji: ๐Ÿ—๏ธ4colorFrom: gray5colorTo: blue6sdk: docker7pinned: false8app_port: 78609---10 11A minimalist Docker Space to help people getting started with Node, Express and TypeScript12 13## Installation14 15### Prerequisites16 17- Install NVM: https://github.com/nvm-sh/nvm18- Install Docker https://www.docker.com19 20### Building and run without Docker21 22```bash23nvm use24npm i25npm run start26```27 28### Building and running with Docker29 30```bash31npm run docker32```33 34This script is a shortcut executing the following commands:35 36```bash37docker build -t template-node-express .38docker run -it -p 7860:7860 template-node-express39```40