# 🐘 Mastodon embed timeline - 🛠️ Installation You have three different ways to install it in your project: - [Download](#download) - [CDN](#cdn) - [Package manager](#package-manager) ## Download Download and copy these two files into your project folder: - `dist/mastodon-timeline.min.css` - `dist/mastodon-timeline.umd.js` Load the CSS and JS files in your HTML page using the `` and ` ``` ## CDN This option allows you to start without the need to upload any files on your server. Copy the following CSS and JS links to include them in your project: ```html ``` ```html ``` ## Package manager A quick way to get it installed using **npm** or **yarn**: ```terminal npm install @idotj/mastodon-embed-timeline ``` or ```terminal yarn add @idotj/mastodon-embed-timeline ``` After installation, you can import it as follows: ```js import * as MastodonTimeline from "@idotj/mastodon-embed-timeline"; ``` Make sure to import also the file `mastodon-timeline.min.css` into your project.