feathers
feathers copied to clipboard
Suggestion: npm create feathers
$ npm install -g @feathersjs/cli
$ mkdir my-new-app
$ cd my-new-app/
$ feathers generate app
$ npm start
can be replaced by
$ npm create @feathersjs/app my-new-app
$ cd my-new-app
$ npm start
or
$ npx @feathersjs/create-app my-new-app
$ cd my-new-app
$ npm start
Is there documentation how to implement this?
I have not seen any documentation but this example: https://github.com/facebook/create-react-app/tree/master/packages/create-react-app
Oooh... found it in the npm init documentation. Basically you create a create-feathers-app repo and then can use npm init feathers-app.
will this be put into the documentation?
Well, it doesn't exist yet. When it does yes, it probably will.