This is the example project used for the Mike Works Visual Studio Code course.
Visual Studio Code is a modern, lightweight and full-featured code editor, built from the ground up to suit the needs of web developers, and JavaScript developers in particular. In this course, we'll dive deep into using, customizing and extending it.
Weβll begin by taking a look at how we can get this fantastic tool to do as much heavy lifting for us as possible. Recent improvements have perfected the ability to attach directly to browsers and Node.js for a truly excellent debugging experience.
If you spend all day looking at and manipulating code, you may as well have your settings exactly the way you want them. Weβll go deep into customizations thatβll affect embedded feedback from static code analysis, the look and feel of the editor and study a few of the best and most useful extensions.
Because VS Code is built with web technology, itβs easy for JavaScript and TypeScript developers to customize and extend. Weβll build two extensions of our own, unlocking extra productivity when working on common tasks.
Please make sure you have the following software installed before arriving at the workshop or beginning the course.
Please make sure you have the following general software installed
Required | Library | Version Range | Notes |
---|---|---|---|
β | Node.js | >= 8.0 | nvm is highly recommended for managing multiple node versions on a single machine |
β | Visual Studio Code | >= 1.14 | We'll be using several specific features of the VS Code editor. We can't force you to use it, but you'll miss out if you don't! |
β | Yarn | >= 0.24 | An alternative to npm (if you are using nvm: brew install yarn --without-node , else use brew install yarn ) |
β | SQLite | >= 3 | An embedded relational database (hint: brew install sqlite3 ) |
Additionally, to take advantage of syntax hilighting, static code analysis and other editor features, you'll want to install the latest version of the following VS Code extensions
Required | Extension | Notes |
---|---|---|
β | sass-indented | Syntax highlighting and code completion support for Sass stylesheets |
β | eslint | Static code analysis for JavaScript and JSX files |
β | jest | Syntax highlighting for Jest snapshot testing and in-editor test pass/fail statuses |
β | Debugger for Chrome | Allows us to attach to Chrome for debugging |
vscode-icons | Better file and folder icons | |
rest-client | An in-editor REST client, so we can experiment with our API effortlessly |
Make sure you have these npm packages installed globally. This can be done by running
npm install -g <package-name>
Required | Library | Version Range |
---|---|---|
β | babel-eslint | ^7.0.0 |
β | eslint | ^4.0.0 |
β | eslint-plugin-babel | ^4.0.0 |
β | eslint-plugin-react | ^7.1.0 |
First, clone this project from Github
git clone https://github.com/mike-works/vscode-fundamentals vscode
cd vscode
Finally, while in the top-level folder of this project, download the and install this project's dependencies by running
yarn
To start the app, run
npm start
and you should see something on http://localhost:3000
You may run into problems during the workshop! An easy way to deal with this is to...
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
or Wget:
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
nvm install stable
nvm use stable
nvm alias default stable
Please install sqlite3 package manually
?If you use OS X, it can be installed with homebew
brew install sqlite3
Windows and Linux users, please install the appropriate official release.
This is a free-standing client/server system, including
Project
β
ββ client/ π± React web client
β ββ components/ π React components
β β β
β β ββ my-thing/index.jsx Component implementation
β β ββ my-thing/index.test.js Component tests
β β ββ my-thing/styles.scss Component styles
β β
β ββ routes/ π Top-level React components, each corresponding to a "page" in our app
β ββ sass/ π
Global Sass stylesheets
β ββ app.jsx π React "App" component
β ββ index.js π¬ Web client entry point
β ββ index.ejs π Template for web client index.html
β
ββ db/ πΎ SQLite databases
ββ dist/ π¦ Web client development/production builds
ββ server/ π Node.js API to support the web client
ββ webpack/ βοΈ Build configuration
ββ .vapid.json π VAPID private and public keys
While the general license for this project is the BSD 3-clause, the exercises themselves are proprietary and are licensed on a per-individual basis, usually as a result of purchasing a ticket to a public workshop, or being a participant in a private training.
Here are some guidelines for things that are OK and NOT OK, based on our understanding of how these licenses work:
© 2018 Mike Works, Inc., All Rights Reserved