### Installing Pikaso via NPM Source: https://github.com/pikasojs/pikaso/blob/master/README.md Command to install the Pikaso library using the npm package manager. This adds Pikaso as a dependency to your project. ```bash npm install pikaso --save ``` -------------------------------- ### Installing Pikaso via Yarn Source: https://github.com/pikasojs/pikaso/blob/master/README.md Command to install the Pikaso library using the Yarn package manager. This adds Pikaso as a dependency to your project. ```bash yarn add pikaso ``` -------------------------------- ### Initializing Pikaso Editor in JavaScript/TypeScript Source: https://github.com/pikasojs/pikaso/blob/master/README.md Demonstrates how to import the Pikaso class and create a new editor instance. The editor requires a container element in the DOM, specified by its ID. ```javascript import Pikaso from 'pikaso' const editor = new Pikaso({ container: document.getElementById(''), }) ``` -------------------------------- ### Including Pikaso via Script Tag (UMD) Source: https://github.com/pikasojs/pikaso/blob/master/README.md HTML script tag to include the Pikaso library directly from a CDN using the UMD bundle. This method is suitable for simple HTML pages without a module bundler. ```html ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.