npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nginx-template

v1.1.0

Published

Generate and update nginx configuration files for port forwarding traffic to Node.js servers with WebSocket support.

Downloads

30

Readme

nginx-template

Generate and update nginx configuration files for port forwarding traffic to Node.js servers with WebSocket support.

npm Package Version

nginx-template is an npx CLI package that generates and updates nginx port forwarding configuration files. It facilitates the creation of .conf files and enables HTTP/2 protocol in existing configurations.

Installation

As this is an npx package, you don't necessarily need to install it. You can run it directly using the npx command. However, you do need to have Node.js and npm installed in your system.

Usage

You can run the CLI using the following command:

npx nginx-template

Upon running, you will be prompted to enter the server_name and port. If the .conf file for the provided server name exists, it will be updated to enable HTTP/2. If it doesn't exist, a new configuration file will be created.

Usage Example

npx nginx-template

Then, you'll see:

nginx port forwarding .conf file generator

## Simple example configuration
port: 8100
server_name: example.com

## Multi host example configuration
port: 8100
server_name: www.example.com api.example.com

Waiting inputs from cli...

Enter the server_name:

server_name: www.example.com api.example.com

And then the port:

port: 8100

The configuration file will be created or updated and saved at ./config.d/www.example.com.conf.

If the .conf file already exists in /etc/nginx/config.d/, you will see the following output:

saved to: config.d/www.example.com.conf

To continue run:
$ sudo cp config.d/www.example.com.conf /etc/nginx/config.d/www.example.com.conf
$ sudo nginx -t
$ sudo certbot --nginx

Otherwise, you will see below output:

saved to: config.d/www.example.com.conf

To continue run:
$ sudo cp config.d/www.example.com.conf /etc/nginx/config.d/www.example.com.conf
$ sudo nginx -t
$ sudo service nginx restart

Notes

  • The server_name can be a single domain or multiple domains separated by a space or comma.
  • The port should be a valid port number.
  • The generated .conf file will be saved in the config.d directory in the current working directory. You will need to move it to the appropriate nginx configuration directory (/etc/nginx/config.d) and restart nginx for the changes to take effect.
  • If the configuration file already exists, it will be updated to enable HTTP/2. If it doesn't exist, a new one will be created.

License

This project is licensed with BSD-2-Clause

This is free, libre, and open-source software. It comes down to four essential freedoms [ref]:

  • The freedom to run the program as you wish, for any purpose
  • The freedom to study how the program works, and change it so it does your computing as you wish
  • The freedom to redistribute copies so you can help others
  • The freedom to distribute copies of your modified versions to others