Bootstrap NES Trial

How to configure the Bootstrap NES Trial

Installation

Follow these steps:

  1. Update your package.json.
  2. Create or update your .npmrc file.
  3. Install your dependencies.
  4. Run your application.

Detailed Instructions

Substitute the Bootstrap dependencies in your package.json with the following

package.json
{
  "dependencies": {
    "bootstrap": "npm:@neverendingsupport/bootstrap@<version>",
  },
  "overrides": {
    "bootstrap": { ".": "npm:@neverendingsupport/bootstrap@<version>" },
  }
}

Create an .npmrc file with the following

.npmrc
@neverendingsupport:registry=https://registry.nes.herodevs.com/npm/pkg/
//registry.nes.herodevs.com/npm/pkg/:_authToken=neverendingsupport

Install your dependencies

/bin/sh
npm install

Run your application

Now you can run your integration tests against Bootstrap NES Trial.

Additional Information

Direct Download URLs

The direct download URLs for Bootstrap NES Trial are:

PackageURL
bootstrap
3.4.2-trial
Download
bootstrap
4.6.2-trial
Download
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").