Installation for developers
The CarbonLite module should be installed via npm.
Configuration can be passed to the init method, see the GitHub and npm pages for documentation and further information about the available options.
# install CarbonLite using npm
npm i @digital-nature-ltd/carbon-lite
// import the package and activate CarbonLite
import CarbonLite from '@digital-nature-ltd/carbon-lite';
const cl = new CarbonLite();
// Call init to start CarbonLite.
cl.init({
timeout: 3000
});