A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
How to make sure dependencies get installed?
-
If my module requires the use of another api. How do i make sure that it is install with it is install with npm install ?
Note from admin: Please use a title that describes your question!
-
@andrewchumchal create a package.json file with
npm init
fill out the fields, after that typenpm install --save DEPENDENCY
then the dependencie gets saved into the package.json file, when you provide the package.json file with your module the users have to typenpm install
and all dependencies which are stored in package.json automatically getting installed -
@strawberry-3.141 said in Hey Guys.:
create a package.json file with npm init fill out the fields, after that type npm install --save
Thanks for the quick reply.