Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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/).