jbilcke-hf's picture
jbilcke-hf HF Staff
initial commit log 🦫
b10f962
metadata
title: Template Node Express
emoji: 🏗️
colorFrom: gray
colorTo: blue
sdk: docker
pinned: false
app_port: 7860

A minimalist Docker Space to help people getting started with Node, Express and TypeScript

Installation

Prerequisites

Building and run without Docker

nvm use
npm i
npm run start

Building and running with Docker

npm run docker

This script is a shortcut executing the following commands:

docker build -t template-node-express .
docker run -it -p 7860:7860 template-node-express