A template TypeScript Web Application that can be used to seed a new project.
- A machine running Linux or OSX (Windows should be supported via WSL 2 but has not been tested).
- A recent version of GNU Make.
- A recent version of Node.js.
- A recent version of Docker.
You can get up and running quickly with...
make dev
Then open http://localhost:8080 in your browser.
You can also package the application into a docker container...
docker build -t typescript-web-application:local .
docker run -p 8080:80 typescript-web-application:local
And again, then open http://localhost:8080 in your browser.
Licensed under MIT.