Including Javascript Library

There are two primary methods for including JavaScript in your projects. The first method is to embed it directly within the body of your webpage using a script tag:

<script src="https://circularlabs.io/CircularSDK/CircularJS.js"></script>

The alternative approach is to import the library directly into your script using the 'import' directive.

import Circular from 'https://circularlabs.io/CircularSDK/CircularJS.js';

...

</script>

Last updated