motely-node
v5.1.18
Published
Motely NativeAOT Node.js addon — seed search engine
Maintainers
Readme
motely-node
Balatro seed search engine — C# compiled to a native Node.js addon via NativeAOT. Ships linux-x64 for Vercel serverless.
Install
npm install motely-nodeUsage
import { MotelyNode } from "motely-node";
// Validate a JAML filter
const error = MotelyNode.validateJaml(jamlString);
if (error) console.error(error);
// Search — results print to stdout as SEED:<seed>|<score>
const result = MotelyNode.runSearch(jaml, threads, batchCharCount, startBatch, endBatch);
const result = MotelyNode.runRandomSearch(jaml, threads, count);
const result = MotelyNode.runKeywordSearch(jaml, threads, keywords, padding);
// result format: "ok|<seedsFound>|<highestScore>"Build
./publish.ps1 -NodeOnly # build linux-x64
./publish.ps1 -NodeOnly -NodeRid win-x64 -Pack # build win-x64 + packLicense
MIT
