Installation
Costro can be integrated into a project in several ways depending on the needs.
- Import it as a CDN package on the page
- Download the JavaScript files and host them yourself
- Install it using npm
CDN
You can use Costro via the CDN links and a <script>
tag.
<script src="https://cdn.jsdelivr.net/npm/costro" crossorigin></script>
You can browse the source of the NPM package at cdn.jsdelivr.net/npm/costro/.
info
The library will be registered as the global variable window.Costro
.
Download and self host
If you prefer self host the JavaScript file, you can download it from the CDN and host it using your own web server. You can then include it using a <script>
tag.
The files can be browsed and downloaded from the jsDeliver CDN.
NPM
npm is the recommended installation method when building applications with Costro. It works well with module bundlers such as webpack or Rollup.
- npm
- yarn
npm install costro
yarn add costro