Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ember 2.0 without Ember cli?

Seems nowadays everything including loading modules is generated from embercli.

Is it possible to create a emberjs 2.0 application without the use of ember-cli?

What are some limitations of not using ember-cli?

like image 878
chrisjlee Avatar asked Aug 20 '15 20:08

chrisjlee


People also ask

Which command is used to install the Ember CLI?

Installing Ember is done using NPM. While you're at it we recommend you to also install phantomjs (if you don't have it already). Ember CLI uses phantomjs to run tests from the command line (without the need for a browser to be open).

What is Ember CLI?

Ember CLI, Ember's command line interface, provides a standard project structure, a set of development tools, and an addon system. This allows Ember developers to focus on building apps rather than building the support structures that make them run.

Do people still use Ember?

In the world of front-end JavaScript frameworks, Ember. js has been a fierce competitor for over a decade. This makes Ember one of the oldest open source JavaScript frameworks, and in 2020 it's still a strong contender for developers working in the front-end world.

Is Ember a library or framework?

Ember. js is a productive, battle-tested JavaScript framework for building modern web applications. It includes everything you need to build rich UIs that work on any device.


1 Answers

Yes, it definitely still is. I support 5 ember applications at my work. 2 of which live on the ASP.Net stack, 3 are on a Java stack. The 2 on the ASP.Net stack aren't using ember-cli and work perfectly fine as a global application.

Here, I've created an ember app without ember-cli: http://emberjs.jsbin.com/xeqevogado/edit?html,js,output

like image 182
Kingpin2k Avatar answered Oct 03 '22 19:10

Kingpin2k