#{DESC}#

Home - Documentation - Chat

--- # Install / Import ```bash > npm install --save #{REPO_NAME}# ``` ```typescript import { myFunction, myObject } from '#{REPO_NAME}#'; ``` Specific imports: ```typescript import { myFunction } from '#{REPO_NAME}#/myFunction'; import { myObject } from '#{REPO_NAME}#/myObject'; ``` ## Import from HTML, with CDN Import it via a bundle that creates a global ( wider browser support ): ```html ``` Or import it as an ES module: ```html ``` *You can specify the version you wish to import: * [unpkg.com](https://unpkg.com) ## Contribute ```bash npm install npm run build npm test ```