-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Jeffrey E. Shaver II edited this page May 17, 2016
·
11 revisions
We should keep our install of nodejs up-to-date. As of March 22, 2016, the latest version is v6.1.0
.
nvm install v6.1.0
nvm alias default v6.1.0
# From the base directory
npm install
npm install -g webpack
npm run update:config
- Run this:
npm run start:dev
- Open the Cloud9 menu in the top-left corner.
- Click "Open Your User Settings".
- Under the
ace
key, there should be another key that sayscustom-types
. If not, create it. - Under the
custom-types
key, there should be ajson()
key. - Under the
json()
key, put this key/value pair"jsx": "jsx"
.
It will look something this after the change:
{
// ...
"ace": {
// ...
"custom-types": {
// ...
"json()" : {
// ...
"jsx": "jsx"
}
}
}
}
git config --global core.editor vim