Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jessmartin/ts-web-starter

Simple starter repo for a web app with TypeScript and plain HTML.
https://github.com/jessmartin/ts-web-starter

Last synced: 28 days ago
JSON representation

Simple starter repo for a web app with TypeScript and plain HTML.

Awesome Lists containing this project

README

        

# DEPRECATED

Instead, use the [Vite TypeScript Template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vanilla-ts).

To start quickly, use [the StackBlitz link](https://vite.new/vanilla-ts).

# ts-web-starter

This is a super-simple starter repository for writing a front-end web application in TypeScript. It uses plain HTML and CSS. Nothing fancy here.

## Getting started

1. Copy the repo locally using `degit`.

```bash
npx degit [email protected]:jessmartin/ts-web-starter PROJECT_NAME
```

2. Install the dependencies.

```bash
cd PROJECT_NAME
yarn install
```

3. Rename the project in `package.json`:

```json
{
...
"name": "Fancy New Project",
"description": "Something fancy about this project.",
...
}
```

4. Run the server.

```bash
yarn start
```