Comment by prionassembly
4 years ago
> Getting started > > The best way to get started with Imba is to use npx to get a brand-new project up and running.
What is npx?
4 years ago
> Getting started > > The best way to get started with Imba is to use npx to get a brand-new project up and running.
What is npx?
It's a tool that comes with NodeJS.
npx will run the node package from node_modules if it's present, else it will npm install the package and then run it.
It's a command from node that allows executing commands from node_modules.