Figma plugin to view Youtube playlists.
Figma Youtube Playlist Viewer ⏯😇☮️
This plugin template uses Typescript. If you are familiar with Javascript, Typescript will
look very familiar. In fact, valid Javascript code is already valid Typescript code.
Typescript adds type annotations to variables. This allows code editors such as Visual Studio Code
to provide information about the Figma API while you are writing code, as well as help catch bugs
you previously didn’t notice.
For more information, visit https://www.typescriptlang.org/
Using Typescript requires a compiler to convert Typescript (code.ts) into Javascript (code.js)
for the browser to run.
To get the TypeScript compiler working:
sudo npm install -g typescript
.That’s it! Visual Studio Code will regenerate the JavaScript file every time you save.