New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@teckmill/nom-cli

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teckmill/nom-cli

Plugin Manager for WebAssembly - Build extensible applications with secure, high-performance plugins

Source
npmnpm
Version
0.2.1
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Nom Core

A powerful WebAssembly plugin system for building extensible applications.

Quick Start

# Install Nom Core CLI
npm install -g @nom-core/cli

# Create a new project
nom init my-app

# Start development
cd my-app
nom dev

## Features
- 🚀 High-performance WebAssembly plugins
- 🔒 Secure sandboxed execution
- 🔌 Easy-to-use plugin system
- 📦 Simple plugin distribution
- 🔄 Hot module reloading
- 🛠️ TypeScript support

## Installation

```bash
npm install -g @teckmill/nom-cli

Documentation

Visit our documentation for detailed guides and API reference.

Available Commands

  • nom spin - Start a plugin
  • nom list - List installed plugins
  • nom search - Search for plugins
  • nom info - Show plugin details
  • nom update [plugin] - Update plugins
  • nom uninstall - Remove a plugin

Plugin Development rust

#[wasm_bindgen] pub struct MyPlugin { state: String, }

#[wasm_bindgen] impl MyPlugin { #[wasm_bindgen(constructor)] pub fn new() -> Self { MyPlugin { state: String::new(), } }

pub fn process(&self, input: &str) -> String {
    // Your plugin logic here
    format!("Processed: {}", input)
}

}

FAQs

Package last updated on 04 Feb 2025

Did you know?

Socket

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