Skip to content

matijagaspar/tuna-for-node

Repository files navigation

Nodejs wrapper around NKN Tuna

Allows using NKN tuna directly from a nodejs script.

Example:

import { startTuna, waitConnected } from 'tuna-for-node'

//starts the tuna process
await startTuna('entry', new URL('./config/', import.meta.url))

//awaits tuna is connected
const ip = await waitConnected()
console.log('IP:', ip)

Installation

requires node 20 or greater

npm

npm install tuna-for-node

pnpm

pnpm add tuna-for-node

What it does

It downloads the correct tuna release binary (based on the platform) from Tuna releases. And uses a simple script to start/stop the process (using spawn).

API

startTuna ⇒ Promise<void>

Starts the tuna client.

Param Type Description
command 'entry' | 'exit'
configDir string | URL
ipChangeCB function
validatePorts boolean if it waits for the proxy port to be open
restart boolean if it should restart tuna if already running

waitConnected ⇒ Promise<string>

Awaits tuna client being connected.

Returns: Promise<string> - the current ip

Param Type Description
validatePorts boolean if it waits for the proxy port to be open
start boolean if tuna should be started if not running (throws error if false and tuna is already running)

stopTuna ⇒ Promise<void>

Stops the tuna client.

Known issues:

  1. This package relies on reading the log output stream from tuna to determine if connected and to what ip. Due to the limitation of the output, there is no way to determine which serivce disconnects and connects belong to. So in the configuration you must only have 1 service defined, it will throw error otherwise
  2. Tuna does not fail or report an error if the defined service binding port is already in use, so is up to you to make sure is not.

Improvments for the future

  • Ability to start multiple (currently the process is global, so only one at the time can be started). One of the limitations is config directory, currently at best I could do a global map per config directory. However looking at more general solution options
  • Handle all errors from the tuna output

About

Nodejs wrapper around NKN Tuna tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published