If you feel like contributing to this project, that is awesome! This guide should help you get started.
- It's OK to submit PR against the
master
branch - It's OK to have multiple commits per PR (will be squashed during merge)
- Please describe the changes in every PR, to make it easier to review. (No empty PR descriptions please)
We will re-iterate these guidelines as the project matures.
Refer to the nativescript-vue/nativescript-vue.org repository
You will need Node.js (>=10.18.1) installed, as well as NativeScript.
Please make sure you are using Nativescript 6.x
After cloning the repo, run:
$ cd nativescript-vue
$ yarn
$ # watch and auto re-build dist/index.js
$ yarn dev
To test the sample applications provided in the repository, you need to yarn dev
in the root directory. This will watch for changes, and rebuild nativescript-vue, which in dev mode will be generated into the samples/app directory (this has been done to reduce the required steps of linking local packages, which had many issues with the recent releases of npm).
Next, open up a new terminal window and run yarn samples
. This will bring up a list of all the available sample applications which you can choose from with your arrow keys. Pressing enter/return will select that sample, and prompt you to choose the platform you'd like to run the sample on. After selecting the platform the application should start on your emulator, and the output will be in your terminal.
If you want to test the sample apps with HMR activated, please run yarn samples -- --hmr
instead. Actually, we can pass any arguments to the tns debug platform
command placing them after the --
separator.
build
: Directory for the custom tooling for managing and building the projectdist
: Directory for the bundled codepackages
: Directory for tightly related packagesplatform/nativescript
: Containsnativescript
specific platform codecompiler
: This is where template compilation logic will go (vue template -> render function)renderer
: The renderer that handles rendering vdom into actual elements in {N}runtime
: {N} specific Vue backendutil
: Utilities
samples
: Sample {N} applications for testing
If JAVA_HOME isn't set correctly, then yarn samples
will exit back to the command prompt after prompting for a sample and platform.
Mac:
export JAVA_HOME=`/usr/libexec/java_home -v1.8`
If you see an error like this:
Transferring project files...
Multiple errors were thrown:
ENFILE: file table overflow, open '/(...)/file-name-resolver/package.json'
it means you have to increase the file limits (see: http://stackoverflow.com/a/27982223). You can do that with:
echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf
echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf
sudo sysctl -w kern.maxfiles=65536
sudo sysctl -w kern.maxfilesperproc=65536
ulimit -n 65536 65536