Skip to content

Instantly share code, notes, and snippets.

@dakoctba
Last active December 30, 2015 12:39
Show Gist options
  • Save dakoctba/7830106 to your computer and use it in GitHub Desktop.
Save dakoctba/7830106 to your computer and use it in GitHub Desktop.
How to init a grunt project in Vagrant environment (Node.js)

##How to init a grunt project in Vagrant environment (Node.js)

// Open a directory
cd project-folder

// Install the dependencies (note the --no-bin-links parameter)
sudo npm install --no-bin-links

// Run Grunt
grunt

no-bin-links tells npm to not create any symbolic links. There isn't a way - to my knowledge - of translating symlinks to a windows share

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment