DEV1205
DEV1205

Reputation: 372

Where else I can find ngx-bootstrap other than github

I am not able to access github at my workplace. But i need to get ngx-bootstrap file for my development. Please suggest any other location.

Upvotes: 1

Views: 79

Answers (1)

Fredrik Lundin Grande
Fredrik Lundin Grande

Reputation: 8186

You can, and usually should, get it using npm (https://www.npmjs.com/package/ngx-bootstrap).

If you have node and npm installed on your computer:

  1. Open a terminal
  2. cd into your project
  3. Run this command: npm install --save ngx-bootstrap

Upvotes: 1

Related Questions