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

tnl

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tnl

simple secure tunnel to a local directory using ngrok and http-server

latest
Source
npmnpm
Version
1.0.4
Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

tnl: simple secure tunnel to a local directory

tnl is a quick and easy way to create a public url with a secure tunnel to a local directory. Utilizing ngrok and http-server, within three characters you can have your directory forwarded to the outside. Excellent for testing on mobile as well as fast feedback from clients.

tnl Example

Installation

Using yarn:

yarn global add tnl

-- or --

Using npm:

 npm install tnl -g

It is now installed globally and tnl can be used in any directory from the command line.

Usage

 tnl [path] [options]

By default [path] and [options] are optional. For example, to change the default port and open immediately in a new browser window:

tnl -p 7001 -o

Path

Location of the local directory to be served. Defaults to ./public if the folder exists otherwise uses the root ./ directory.

Options

For a complete list of potential options refer to http-server's avalable options.

-o Open browser window after starting the server and tunnel

-n or --ncopy Copy the ngrok URL to the clipboard for pasting

-p Port to use (defaults to 8080)

-a Address to use (defaults to '0.0.0.0')

-d Show directory listings (defaults to true)

-i Display autoIndex (defaults to true)

-e or --ext Default file extension if none supplied (defaults to 'html')

-s or --silent Suppress log messages from output

--cors Enable CORS via the Access-Control-Allow-Origin header

-c Set cache time (in seconds) for cache-control max-age header, e.g. -c10 for 10 seconds (defaults to 3600). To disable caching, use -c-1.

-P or --proxy Proxies all requests which can't be resolved locally to the given url. e.g.: -P

API

var tnl = require('tnl');

See API documentation.

Keywords

cli

FAQs

Package last updated on 06 Dec 2017

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