Bootstrap NES Trial
How to configure the Bootstrap NES Trial
Installation
Review the Minimum Requirements before starting for a seamless installation.
Follow these steps:
- Update your
package.json
. - Create or update your
.npmrc
file. - Install your dependencies.
- Run your application.
Detailed Instructions
Substitute the Bootstrap dependencies in your package.json with the following
{
"dependencies": {
"bootstrap": "npm:@neverendingsupport/bootstrap@<version>",
},
"overrides": {
"bootstrap": { ".": "npm:@neverendingsupport/bootstrap@<version>" },
}
}
Trial Versions
Trial versions include: "3.4.2-trial" and "4.6.2-trial". Replace <version>
in the above code block with the specific trial version that matches your project's Bootstrap version (either "3.4.2-trial" for Bootstrap 3.x projects or "4.6.2-trial" for Bootstrap 4.x projects).
Create an .npmrc
file with the following
@neverendingsupport:registry=https://registry.nes.herodevs.com/npm/pkg/
//registry.nes.herodevs.com/npm/pkg/:_authToken=neverendingsupport
Install your dependencies
npm install
Run your application
Now you can run your integration tests against Bootstrap NES Trial.
Additional Information
Direct Download URLs
Credentials for Trial Downloads
When you use our browser links for direct download, you will be redirected to a page that prompts you for "Sign in" credentials. For trial packages, you simply need to enter the credentials below and click submit. This does not redirect to another page, but you will see the file appear in your downloads shortly thereafter.
- Username: HeroDevs
- Password: neverendingsupport
The direct download URLs for Bootstrap NES Trial are:
Alternate Download Method
If you cannot use our browser download links, but would still like to download our packages directly, you can run the following curl command following the same versioning guidelines as the above. Examples of what you would enter in place of <package-version>
appear in the above table in blue.
curl --header "Authorization: Bearer neverendingsupport" \
--location \
--output <package-version>.tgz \
https://registry.nes.herodevs.com/npm/pkg/@neverendingsupport/bootstrap/-/<package-version>.tgz
Replace <package-version>
with the full package filename including version (e.g., "3.4.2-trial" or "4.6.2-trial").
For more information surrounding our direct download options, view our Direct Downloads guide.