
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
flow-launcher-helper
Advanced tools
A simple library to help build plugins for Flow Launcher with Javascript or Typescript
npm install flow-launcher-helper
I recommend you read the Flow docs before writing your plugin. This example is based on their example.
import { Flow } from 'flow-launcher-helper';
const { params, on, showResult, run } = new Flow();
on('query', () => {
showResult({
title: 'Hello World Typescript',
subtitle: `Showing your query parameters: ${params}. Click to open Flow's website`,
method: 'do_something_for_query',
params: ['https://github.com/Flow-Launcher/Flow.Launcher'],
iconPath: 'Images\\app.png',
});
});
on('do_something_for_query', () => {
const url = params;
open(url);
});
run();
Flow
defaultIconPath
— string (optional)
: the default icon path that will be sent to Flow, so you don't need to specify everytime in the showResult
function.method
— string
: current method.params
— string
: current parameters.settings
— object
: plugin settings.on
— function
: receives a method (string) and a callback function that will be executed when the method matches the current method.showResult
— function
: receives an array of results, where you specify the title, subtitle, method, params and icon path, and logs the data to be displayed in Flow.run
— function
: runs the current method. You should call this function at the end of your script, or after all the on
functions have been called.If you're writing a plugin in Typescript, you can add types to method
and settings
.
type Methods = 'my_method' | 'my_other_method'
interface Settings {
username: string;
api_token: string;
}
const { method, settings } = new Flow<Methods, Settings>()
console.log(method === 'my_method') // ✅ true
console.log(method === 'another_method') // ❌ false
console.log(settings.username) // ✅
console.log(settings.name) // ❌ Property 'name' does not exist on type 'Settings'
FAQs
A simple lib to help build plugins for Flow Launcher
The npm package flow-launcher-helper receives a total of 3 weekly downloads. As such, flow-launcher-helper popularity was classified as not popular.
We found that flow-launcher-helper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.