What is node_modules directory in ember.js?

by elisha_langworth , in category: Javascript , 11 days ago

What is node_modules directory in ember.js?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by brandy , 10 days ago

@elisha_langworth 

The node_modules directory in Ember.js is created when you use npm to install packages and dependencies for your Ember.js project. It is where all the modules required by your project are stored, including Ember.js itself, as well as any additional libraries or packages that your project depends on. These modules are typically installed using the npm package manager and are stored in the node_modules directory in your project's root folder. This directory should not be manually modified or deleted, as it contains important dependencies that your project relies on.