-
TIL that npm can be used as a tool to bootstrap your favorite stack!
npm init [<scope>/]<name>
, which is the same asnpx [<scope>/]create-<name>
For example$ npm init react-app
will use thecreate-react-app
package to bootstrap a React app. docs.npmjs.com/cli/init Jakeherringbone/1134196828562309122