Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is ember.js? Write the steps to create an app in ember.js?

Answer Posted / Nitin Aliwal

Ember.js is a JavaScript framework for building web applications. It provides a structured approach to building scalable, maintainable web applications.nnTo create an Ember.js application, follow these steps:n1. Install Node.js: Ember requires Node.js v10 or later. Visit the official website (https://nodejs.org/) and download the installer for your operating system.n2. Install Ember CLI: Run `npm install -g ember-cli` in the terminal to globally install Ember CLI.n3. Create a new project: Use `ember new <project-name>` to create a new Ember.js application with the specified name.n4. Navigate to the project directory: Run `cd <project-name>` to access the project's root folder.n5. Start development server: Use `ember serve` to start the development server and open your browser at http://localhost:4200 to see the application.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are observers in ember.js?

2