Node.js interface to UFW forked to allow execution of your Node process as non-root user.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Rob Colbert 75ccfa3a1f v2.0.1 2 years ago
.github Create FUNDING.yml 3 years ago
docs added logging method 3 years ago
src remove superuser requirement 2 years ago
.gitignore ignore transpiled folder and lock files 2 years ago
LICENSE added MIT license 3 years ago
README.md fix incorrect import example 2 years ago
Test.ts refactor file test to typescript 2 years ago
package.json v2.0.1 2 years ago
release release script 2 years ago
tsconfig.json major refactor to typescript 2 years ago

README.md

Node UFW

Manipulate UFW (Linux distribution only) through Node.js.

System Requirements

The module only supports Node.js up to version 16, and Ubuntu version 18 or above.

This also requires root access, otherwise you will get an error from ufw itself, asking you a password with prompt.

Installation

$ npm install node-ufw
$ pnpm add node-ufw

Usage

const nodeUfw = require("node-ufw"); // JavaScript
import * as nodeUfw from "node-ufw"; // TypeScript

await nodeUfw.allow.port(6379);
await nodeUfw.deny.port(25565, "udp");

await nodeUfw.allow.address("192.168.0.1");
await nodeUfw.deny.address("192.168.0.1", 80);
await nodeUfw.allow.address("192.168.0.1", 6379, "udp");

await nodeUfw.enable();

Documentations

See DOCS.

LICENSE

See LICENSE.