I would like to install bootstrap-loader from github in my project using npm
Currently they are maintaining two version of this project which are comaptible with web
Another approach would be to add the following line to package.json dependencies:
package.json
"package-name": "user/repo#branch"
For example:
"dependencies": { ... other dependencies ... "react-native": "facebook/react-native#master" }
And then do npm install or yarn install
npm install
yarn install