npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ae-karas

v0.7.7

Published

An AfterEffects plugin for karas.

Downloads

43

Readme

ae-karas

An AfterEffects plugin for karas.


ae-karas

NPM version

Install

npm install ae-karas

Dev

  1. cd ~/Library/Application\ Support/Adobe/CEP/extensions 如果目录不存在就创建一个
  2. ln -s 项目根目录/bundle ./ae-karas 软连接ae插件到当前bundle目录
  3. defaults write com.adobe.CSXS.10 PlayerDebugMode 1 跑一下这个命令打开开发模式
  4. defaults write com.adobe.CSXS.11 PlayerDebugMode 1 高版本的ae可能需要打开11
  5. npm run dev watch编译
  6. 下载https://github.com/Adobe-CEP/CEP-Resources/tree/master/CEP_9.x 根据环境选择
  7. 打开cefclient,输入http://localhost:8735 查看log,如果没权限则chmod -R 777
  8. 下载https://github.com/Adobe-CEP/CEP-Resources/tree/master/ZXPSignCMD/4.1.2/macOS 加签

上传功能需自定义配置src/util/config.js中的URL并实现对应服务端接口后,重新打包。

config.UPLOAD_IMG为上传图片的配置,会post如下数据:
{
  data: String,
  quality: Number = 0.8,
  returnBase64: Boolean,
}
data为图片的base64数据,returnBase64会根据用户勾选传true。
返回数据为:
{
  url: String,
  base64: String,
}
会根据returnBase64的值来返回压缩后的图片url或者base64数据。
config.UPLOAD为上传JSON的配置,会post一个file数据,并在结果中返回json地址。

蚂蚁内部请使用内部版本,已做好上传。

License

[MIT License]