https://github.com/drager/why-typescript-matters-talk
A talk about TypeScript
https://github.com/drager/why-typescript-matters-talk
Last synced: 6 months ago
JSON representation
A talk about TypeScript
- Host: GitHub
- URL: https://github.com/drager/why-typescript-matters-talk
- Owner: drager
- Created: 2022-08-16T20:09:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-29T09:05:30.000Z (over 3 years ago)
- Last Synced: 2025-03-20T17:52:32.216Z (10 months ago)
- Language: TypeScript
- Homepage: https://talk.jesperh.se
- Size: 496 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
✨ Why TypeScript matters ✨
=====================
A talk about TypeScript!
## Getting Started
1. Install dependencies
```sh
$ yarn install
```
2. Start the webpack server. The server will run at the default `webpack-dev-server` address, [`localhost:8080`](http://localhost:8080).
```sh
$ yarn start
# Or with a specific port!
$ yarn start --port=3000
```
## Build & Deployment
Building the dist version of the project is as easy as running
```sh
$ yarn build
```