GithubHelp home page GithubHelp logo

typescriptcourse's Introduction

What is Typescript

Typescript is a programming language but it's also a tool. It's a powerful compiler which you run over your code to compile your typescript code to Javascript. So a result of writing code in ts is js. Ts compiler compiles these new features to JavaScript workarounds so in the end it might give nicer syntax, easier way of doing something and it will then compile that nicer easier way to a more complex JavaScript snippet. One important thing which the name already implies is it adds types, it adds a feature to the js language.

Ts's type system only helps during development (i.e. before the code gets compiled).

Js is dynamically typed which means it's perfectly fine when a variable which initially might hold a number later is assign a string to it.

Ts is statically typed which means it need definition for the types of variables and parameters ends on during development.

Initialize setup

tsc --init

// create .js for all .ts
tsc

Using watch mode

tsc [filename.ts] -w

tsconfig.json

"Lib": [ // all core vanilla js "dom", "es6", "dom.iterable", "scripthost" ] -> option that allows you to specify which default objects and features typescript knows

"sourceMap" -> help with debugging and developing "outDir" -> setting dist folder "rootDir" -> setting source folder "noEmitOnError" -> conpiling file despite having errors "strict" -> enables all strict type checking options

typescriptcourse's People

Contributors

sahadporn avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.