Ember CLI is pretty much the defacto way to work with Ember these days. It makes creating new elements of an application extremely easy. Lately I have been working on using Ember Data so I wanted to do a little write-up on how to use Ember Data fixtures. Fixtures are a great way to start working on your application before you have an API to work with. It is also a great way to determine what your API’s data should look like.
(more…)
Posts Tagged ‘cli’
Using Ember CLI and working with Ember Data fixtures
Working with Ember Data, Node, Express and MongoDB
I have really been enjoying working with EmberJS lately, once you get over the learning curve and understand how things should relate, it becomes really fast and fun!
Lets take a look at how we can use Ember Data with Node (or io.js),Express and MongoDB. For this example lets use the Ember CLI to start an Ember application fast!
(more…)
Getting started with Gulp and Sass
A few years ago I wrote an article on Getting started with Grunt and Sass. I wanted to write one about using Gulp and gulp-sass
since gulp is starting to become more widely used.
(more…)
Node and NPM no longer work after Mavericks update.
I have had this issue a few times lately. I finally updated to Mavericks and low and behold node
and npm
no longer seem to work.
After updating to Mavericks, running node
or the name of any npm package produced -bash: node: command not found
Here is how I went about getting it back up and running. These are a few ways I have found this that worked on all the computers I had this issue with.
(more…)