[PR #53] [MERGED] NodeJS Plugin Runtime #25

Closed
opened 2025-12-29 07:18:57 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/53
Author: @gschier
Created: 6/26/2024
Status: Merged
Merged: 7/19/2024
Merged by: @gschier

Base: masterHead: node-plugins


📝 Commits (10+)

  • c7900b3 Basic gRPC server to run Curl import
  • 3853749 Basic plugin info and loading
  • 0119f72 Started on PluginHandle
  • 47265cf Better plugin loading
  • 281e88f Refactor worker reply
  • f1aca1a Add filter call
  • 53439cd Merge branch 'refs/heads/master' into node-plugins
  • fb74dc5 Got filter plugins working
  • 33a7720 Call plugins from Rust, and refactor
  • 0f222f9 Dynamic filter plugin

📊 Changes

106 files changed (+5243 additions, -21334 deletions)

View changed files

📝 .eslintrc.cjs (+1 -1)
📝 .github/workflows/release.yml (+10 -0)
📝 .gitignore (+0 -1)
📝 package-lock.json (+584 -15)
📝 package.json (+7 -11)
plugin-runtime/.gitignore (+2 -0)
plugin-runtime/nodemon.json (+5 -0)
plugin-runtime/package-lock.json (+3004 -0)
plugin-runtime/package.json (+23 -0)
plugin-runtime/scripts/generate-sea.cjs (+66 -0)
plugin-runtime/sea-config.json (+8 -0)
plugin-runtime/src/PluginHandle.ts (+90 -0)
plugin-runtime/src/PluginManager.ts (+61 -0)
plugin-runtime/src/gen/plugins/runtime.ts (+432 -0)
plugin-runtime/src/index.ts (+87 -0)
plugin-runtime/src/index.worker.ts (+64 -0)
plugin-runtime/src/plugins.ts (+18 -0)
plugin-runtime/tsconfig.json (+25 -0)
plugins/exporter-curl/package-lock.json (+0 -1544)
plugins/exporter-curl/package.json (+0 -7)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/53 **Author:** [@gschier](https://github.com/gschier) **Created:** 6/26/2024 **Status:** ✅ Merged **Merged:** 7/19/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `node-plugins` --- ### 📝 Commits (10+) - [`c7900b3`](https://github.com/mountain-loop/yaak/commit/c7900b3a7c47f06ccafb268e4ef25e6676da297c) Basic gRPC server to run Curl import - [`3853749`](https://github.com/mountain-loop/yaak/commit/38537496616821749e5a390e9e3c5e512f9829fe) Basic plugin info and loading - [`0119f72`](https://github.com/mountain-loop/yaak/commit/0119f72521b8f64199c8df397600b4f30be506f6) Started on PluginHandle - [`47265cf`](https://github.com/mountain-loop/yaak/commit/47265cfd105c0ba62b54c8d939ce8391532403ff) Better plugin loading - [`281e88f`](https://github.com/mountain-loop/yaak/commit/281e88f767fbe9358f129ab25126a71c36bea240) Refactor worker reply - [`f1aca1a`](https://github.com/mountain-loop/yaak/commit/f1aca1a92f6e7fc6302ce2c1e64f427189e2ce46) Add filter call - [`53439cd`](https://github.com/mountain-loop/yaak/commit/53439cd28ca4001d8ae53d81a169744aed28166a) Merge branch 'refs/heads/master' into node-plugins - [`fb74dc5`](https://github.com/mountain-loop/yaak/commit/fb74dc57c536b93146f8e3b8d20927ede6d8d679) Got filter plugins working - [`33a7720`](https://github.com/mountain-loop/yaak/commit/33a7720fd4a591580823af88032de652b485977b) Call plugins from Rust, and refactor - [`0f222f9`](https://github.com/mountain-loop/yaak/commit/0f222f99a02e87c4f082691cbad6e8f90c5a59fe) Dynamic filter plugin ### 📊 Changes **106 files changed** (+5243 additions, -21334 deletions) <details> <summary>View changed files</summary> 📝 `.eslintrc.cjs` (+1 -1) 📝 `.github/workflows/release.yml` (+10 -0) 📝 `.gitignore` (+0 -1) 📝 `package-lock.json` (+584 -15) 📝 `package.json` (+7 -11) ➕ `plugin-runtime/.gitignore` (+2 -0) ➕ `plugin-runtime/nodemon.json` (+5 -0) ➕ `plugin-runtime/package-lock.json` (+3004 -0) ➕ `plugin-runtime/package.json` (+23 -0) ➕ `plugin-runtime/scripts/generate-sea.cjs` (+66 -0) ➕ `plugin-runtime/sea-config.json` (+8 -0) ➕ `plugin-runtime/src/PluginHandle.ts` (+90 -0) ➕ `plugin-runtime/src/PluginManager.ts` (+61 -0) ➕ `plugin-runtime/src/gen/plugins/runtime.ts` (+432 -0) ➕ `plugin-runtime/src/index.ts` (+87 -0) ➕ `plugin-runtime/src/index.worker.ts` (+64 -0) ➕ `plugin-runtime/src/plugins.ts` (+18 -0) ➕ `plugin-runtime/tsconfig.json` (+25 -0) ➖ `plugins/exporter-curl/package-lock.json` (+0 -1544) ➖ `plugins/exporter-curl/package.json` (+0 -7) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 07:18:57 +01:00
adam closed this issue 2025-12-29 07:18:57 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#25