



Basic math in JavaScript - numbers and operators.Storing the information you need - Variables.What went wrong? Troubleshooting JavaScript.JavaScript - Dynamic client-side scripting.Typesetting a community school homepage.HTML table advanced features and accessibility.From object to iframe - other embedding technologies.This is the file that defines the TypeScript configurations, like what folders it should check and to what folder it should build the files.Ĭreate the tsconfig. With the libraries installed, now we have to create our tsconfig.json. Finally, we will install some types to avoid some future trouble. Then we install the typescript and the ts-node libraries to add TypeScript support to our project, and nodemon to make our server listen to modifications (so we don’t have to restart our project everytime we make a change to some file). Now we have to install some dependencies: yarn add express yarn add typescript ts-node nodemon -D yarn add -D mkdir new-project cd new-project yarn init -yįirst we create our project folder, open it and initialize our project using yarn init -y, creating a package.json file. I’ll be using yarn for this tutorial, but feel free to use npm if you prefer. We will start by initializing our project and installing some dependencies.
