https://github.com/johnpapa/pluralsight-vscode-samples
VS Code samples for Pluralsight course on Code
https://github.com/johnpapa/pluralsight-vscode-samples
Last synced: 6 months ago
JSON representation
VS Code samples for Pluralsight course on Code
- Host: GitHub
- URL: https://github.com/johnpapa/pluralsight-vscode-samples
- Owner: johnpapa
- License: mit
- Created: 2015-08-04T11:38:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-09-07T08:41:04.000Z (about 4 years ago)
- Last Synced: 2025-03-27T01:09:53.483Z (7 months ago)
- Language: JavaScript
- Size: 361 KB
- Stars: 70
- Watchers: 19
- Forks: 229
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pluralsight-vscode-samples
VS Code samples for Pluralsight course on CodeFor most samples you will need these global npm packages to be installed.
```javascript
npm install grunt-cli gulp bower typescript babel -g
```## asp play
ASP.NET 5 sample application. Created from the asp.net generatorFirst make sure you install ASP.NET 5 and DNX
## angular2fiveminutes
Angular 2 sample application.Run a static server in the root
```javascript
cd angular2fiveminutes
ss
```## code play
JavaScript (ES5) sample application. Created from the Hot Towel generator.Get all code
```javascript
cd codeplay
npm install
bower install
```To run it
```javascript
gulp serve-dev
```## es6 play
JavaScript (ES6) sample application.Get all code
```javascript
cd es6play
npm install
bower install
```To run it
```javascript
gulp serve-dev
```## gruntproject
Grunt file sample application.Get all code
```javascript
cd gruntproject
npm install
```To run it
```javascript
grunt grunt-hint
```## ts play
TypeScript sample application.Get all code
```javascript
cd tsplay
npm install
bower install
```To run it
```javascript
gulp serve-dev
```