Here is the basic command to load the initial files.
-
Open command prompt on your machine
-
Navigate to root folder (helloworld)
-
Execute the following command npm install //This command will install all the dependencies defined in the package.json file. You can see all the files under node_modules folder and typings folder.
-
Finally run the project by executing the following command. npm start //This command will start the TypeScript compiler (tsc) and compile the type script in js format. For example app.components.ts will be compile to app.component.js