Socket
Socket
Sign inDemoInstall

@liangshen/alfred

Package Overview
Dependencies
0
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @liangshen/alfred

Creat, Develop and Publish Alfred workflows


Version published
Maintainers
1
Created

Readme

Source

@liangshen/alfred

Creat, Develop and Publish Alfred workflows

Usage

创建新项目(如果已有忽略)

mkdir test
cd test
npm init -y

此时package.json 的name也就是项目名为test

Install

npm install @liangshen/alfred --save

1.初始化: 会读取package.json 中的name、author、description、keywords等字段来生成info.plist文件初始化alfred的工作流(如果存在info.plist文件则不初始化) 2.会为项目创建软链到alfred workflow目录下(主要用于发布前的开发调试阶段)

添加入口文件

touch index.js

index.js

import alfred from '@liangshen/alfred'

const items = [{arg: 'test', title: '测试', subtitle: '11111'}]
alfred.output({items});

测试

打开alfred窗口输入 test 会出现output中的iterms 测试成功

Public Alfred Workflow

工作流测试完成后可发布到npm

npm publish --access public

当工作流被全局下载时同样会自动创建软到alfred workflow目录下 工作流开箱即用

npm install -g xxxxxx

Uninstall

会自动清除创建的软链

npm uninstall @liangshen/alfred

FAQs

Last updated on 14 Feb 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc