Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/jessmartin/ts-web-starter
- Owner: jessmartin
- Created: 2022-04-27T19:13:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-04T19:58:41.000Z (over 2 years ago)
- Last Synced: 2024-12-07T14:46:02.700Z (about 1 month ago)
- Language: HTML
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```