VS Code Samples
Перейти к файлу
Marcellin Nshimiyimana cd2316af9b
Fix "program path" issue
with `"program": "${workspaceRoot}\\bin\\www"`Vscode fails saying that it cannot find the program path
2017-11-08 19:16:25 +05:45
node-express-javascript Fix "program path" issue 2017-11-08 19:16:25 +05:45
node-express-typescript Delete .DS_Store 2017-03-24 18:14:17 -07:00
.gitignore ignore .DS_Store 2015-12-06 11:17:00 -08:00
LICENSE Update LICENSE 2015-11-23 17:52:56 -08:00
README.md formatting 2015-12-06 11:38:19 -08:00
thirdpartynotices.txt Update thirdpartynotices.txt 2015-11-06 14:15:17 -08:00

README.md

vscode-samples

This repository contains sample applications customized for Visual Studio Code. Each sample is a self contained workspace with configuration files specific to that folder.

These examples use gulp. If you don't already have this installed globally then you can install with the following command:

npm install -g gulp

Next, cd into the sample directory, run npm install to install any necessary dependencies, and then start code:

JavaScript

cd node-express-javascript
npm install
code .

TypeScript

cd node-express-typescript
npm install
code .

To run the sample application, press F5 to start the server under the debugger and then browse to http://localhost:3000.

License

MIT