Certego components library. Built on React.js + reactstrap + more.
- Dragonfly: Dragonfly is a malware sandbox based on binary emulation, a service by Certego S.R.L.
- IntelOwl
npm install --save @certego/certego-uiYou can configure your local development environment in a way that any change in the certego-ui directory will trigger a new build which, in turn, will trigger a new build of your project. This will save you a lot of development time and headache.
- Clone the certego/certego-ui repository if you haven't already.
$ git clone [email protected]:certego/certego-ui.git /home/user/certego-ui- Install dependencies and start local dev server,
/home/user/certego-ui$ npm install
/home/user/certego-ui$ npm start- In your other project that uses
certego-ui, open thepackage.jsonfile and modify under"dependencies"to"@certego/certego-ui": "/home/user/certego-ui". - Now re-install dependencies and start local dev server,
/home/user/certego-ui$ npm install
/home/user/certego-ui$ npm start- Open a terminal and start local dev server for
certego-ui,
/home/user/certego-ui$ npm start- Open another terminal and start local dev server for the
certego-ui/exampleapp,
/home/user/certego-ui/example$ npm install
/home/user/certego-ui/example$ npm start- The example application will be served on http://localhost:3000/.
- Modify
versionattribute insidepackage.jsonfile and runnpm installin a terminal. - Modify
CERTEGO_UI_VERSIONvariable inexample/src/layouts/AppFooter.jsxfile. - Write a new entry in the
CHANGELOG.mdfile describing the changes. - Finally, you should create a new release on the GitHub repistory by going to this link.
New release on GitHub will automatically publish new release on npmjs.com and, re-build and deploy the example application as well.
MIT © certego