Strojom nainštalovať nodejs

Príklady kódu

3
0

N

npm install -g typescript
1
0

N

// Follow the below steps and you good to go easily

// create a new folder and open a terminal on that folder and type below commands
	npm init-y

	yarn add -D @types/node typescript ts-node

	npx tsconfig.json                 

// open package.json and add in  scripts
    "start": "ts-node src/index.ts",
     
//	create new folder src/index.ts ..... open - index.ts
     console.log("Hello TypeScript");

//// And type below cmd for start....
	yarn start
    
//// DONE!!!!!!!
   

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................