[Ember] Creating Your First Ember.js Project with Ember-CLI

In this lesson, we'll setup Ember-CLI and use it to create and run our first Ember.js project.

Install:

npm i -g ember-cli

Run:

ember new <project-name>

Serve:

cd <project-name>
ember server
原文地址:https://www.cnblogs.com/Answer1215/p/5685391.html