Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nuclearredeye/typescript-web-application
A TypeScript web application template that can be used as a seed for new projects
https://github.com/nuclearredeye/typescript-web-application
template typescript webapp
Last synced: 2 days ago
JSON representation
A TypeScript web application template that can be used as a seed for new projects
- Host: GitHub
- URL: https://github.com/nuclearredeye/typescript-web-application
- Owner: NuclearRedeye
- License: mit
- Created: 2020-09-11T14:54:35.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-09T21:29:27.000Z (7 months ago)
- Last Synced: 2024-04-10T00:59:32.132Z (7 months ago)
- Topics: template, typescript, webapp
- Language: Makefile
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# TypeScript Web Application
A template TypeScript Web Application that can be used to seed a new project.
## Prerequisites
* A machine running Linux or OSX (Windows should be supported via WSL 2 but has not been tested).
* A recent version of [GNU Make](https://www.gnu.org/software/make/).
* A recent version of [Node.js](https://nodejs.org/en).
* A recent version of [Docker](https://www.docker.com/).## Quick Start
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.
## License
Licensed under [MIT](https://choosealicense.com/licenses/mit/).