Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/packtworkshops/the-typescript-workshop
https://github.com/packtworkshops/the-typescript-workshop
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/packtworkshops/the-typescript-workshop
- Owner: PacktWorkshops
- License: mit
- Created: 2020-08-18T13:08:02.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T07:08:35.000Z (almost 2 years ago)
- Last Synced: 2023-03-13T18:16:53.023Z (over 1 year ago)
- Language: TypeScript
- Size: 994 KB
- Stars: 32
- Watchers: 9
- Forks: 32
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The-TypeScript-Workshop
The TypeScript Workshop is designed for software developers who want to broaden
their skill set by learning TypeScript. To get the most out of this book, you should
have a basic knowledge of JavaScript or experience of using another similar
programming language.## Installation and Setup ##
### VS Code
This book uses VS Code as the IDE to save and run TypeScript and JavaScript files.
You can download VS Code from the following website: https://code.visualstudio.com/
download. Scroll to the bottom of the page and click on the download button relevant
to your system. Follow the instructions displayed on your screen.#### Node.js
You need to install the latest version of Node.js, which includes npm. You can
download and install Node.js from https://nodejs.org/en/download/. Click and download
the installer relevant to your system.### TypeScript
This book uses TypeScript version 4.1.3. Once you have VS Code and Node.js installed
in your system, you can install TypeScript by opening a terminal and running the
following command:
npm install -g [email protected]The preceding command will install version 4.1.3 globally. There are several other
libraries and dependencies that you might have to install as part of executing the
code given in the exercises and activities in this book. However, instructions for doing
so have been provided in the relevant chapter/section.