Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vimrc | 29,349 | 14 days ago | 7 | mit | Vim Script | |||||
The ultimate Vim configuration (vimrc) | ||||||||||
Awesome Zsh Plugins | 13,445 | 7 days ago | 5 | bsd-3-clause | Shell | |||||
A collection of ZSH frameworks, plugins, themes and tutorials. | ||||||||||
Awesome Vite | 11,433 | a day ago | 30 | mit | JavaScript | |||||
⚡️ A curated list of awesome things related to Vite.js | ||||||||||
Awesome Svg | 4,355 | a year ago | 12 | Ruby | ||||||
A curated list of SVG. | ||||||||||
Awesome Xcode Extensions | 2,947 | 6 days ago | 1 | Ruby | ||||||
Awesome native Xcode extensions. | ||||||||||
Jquery Boilerplate | 2,559 | 2 | 3 years ago | 1 | August 25, 2017 | 11 | JavaScript | |||
A jump-start for jQuery plugins development | ||||||||||
Awesome Burp Extensions | 2,555 | 24 days ago | 1 | cc0-1.0 | ||||||
A curated list of amazingly awesome Burp Extensions | ||||||||||
Awesome Draft Js | 2,415 | a year ago | ||||||||
Awesome list of Draft.js resources | ||||||||||
Zsh Vi Mode | 2,322 | 3 days ago | 1 | April 14, 2021 | 80 | mit | Shell | |||
💻 A better and friendly vi(vim) mode plugin for ZSH. | ||||||||||
Awesome Musicdsp | 2,184 | 15 days ago | 1 | cc-by-4.0 | ||||||
A curated list of my favourite music DSP and audio programming resources |
Kickstart your awesome Figma plugin with this boilerplate.
export default class ExamplePlugin {
constructor() {
this.options = [
"Alert File Name",
this.main.bind(this),
null,
{ shift: true, option: true, key: "t" }
];
const { figmaPlugin } = window;
figmaPlus.createPluginsMenuItem(...this.options);
window.examplePlugin = this;
}
main() {
const { App, alert } = window;
const fileName = App.getCurrentFileName();
alert(fileName);
}
}
$ git clone https://github.com/figma-plus/plugin-boilerplate
$ yarn install
$ yarn serve
$ yarn test
$ yarn build
You'll see your bundle inside dist
directory.
Follow the docs instructions to publish it.
This project is licensed under the MIT License