mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
754 B
754 B
Contributing to Nuxt.js
- Fork this repository to your own GitHub account and then clone it to your local device.
- Install the dependencies:
npm install
. - Run
npm link
to link the local repo to NPM. - Run
npm run build
to build ornpm run watch
to build and watch for code changes. - Then npm link this repo inside any example app with
npm link nuxt
. - Then you can run your example app with the local version of Nuxt.js (You may need to re-run the example app as you change server side code in the Nuxt.js repository).
Make sure to add tests into test/
directory and try them with npm test
before making a pull request.