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

generate-nordvpn-wgconf

v1.1.0

Published

This (macOS) tool automates the generation of WireGuard configuration files for NordVPN servers. It allows users to generate configurations for specific countries or all available countries, leveraging NordVPN's recommended servers.

Downloads

27

Readme

NordVPN WireGuard Configuration Generator

This (macOS) tool automates the generation of WireGuard configuration files for NordVPN servers. It allows users to generate configurations for specific countries or all available countries, leveraging NordVPN's recommended servers.

This tool automates extracting of the NordVPN WireGuard privatekey from keychain (macOS). Please make sure you read Usage below.

Getting Started

Installation

npm install -g generate-nordvpn-wgconf

Usage

Generate configurations using the command-line interface. The tool supports several options for customization:

You have to either specify your NordVPN WireGuard privatekey (if you know it already), or specify your NordVPN AccountID, get it from https://my.nordaccount.com/dashboard/nordvpn/manual-configuration/

  • If --pk is specified, it will just use that and no macOS specific functionality is used
  • If --nordvpn-accountid is specified, it will do a keychain lookup to find your NordVPN credentials, to extract the privatekey.

How to automatically extract privatekey on macOS?

Read carefully, otherwise it won't work.

  1. Install NordVPN from the Mac AppStore, not directly from the website or brew
  2. Go into settings and change protocol to NordLynx
  3. Connect to any server with NordLynx, doesn't matter which

After doing that, NordVPN will store the NordLynx (WireGuard) credentials in keychain, for us to extract.

Options

  • --country, -c: Specify the country code(s) (ISO 3166-1 alpha-2 code) for which to generate the configuration. For example, US for the United States. DE,JP for Germany and Japan.
  • --wireguard-privatekey, -pk: Your WireGuard private key. This is required unless using --nordvpn-accountid.
  • --nordvpn-accountid, -id: Your NordVPN account ID. Required if you do not provide a WireGuard private key.
  • --dns-server, -dns: Specify the DNS server to use in the configuration. Defaults to 103.86.96.100.
  • --amount, -a: The number of configurations to generate for the specified country. Defaults to 1.
  • --all-countries: Generate configurations for all available countries.
  • --outdir, -o: The output directory for the generated configuration files. Defaults to the current working directory.

Generating a Single Configuration

To generate a configuration for a specific country with your WireGuard private key:

node index.js --country US --wireguard-privatekey YOUR_PRIVATE_KEY --outdir /path/to/output/dir

Generating Multiple Configurations

To generate multiple configurations for a specific country:

node index.js --country US --wireguard-privatekey YOUR_PRIVATE_KEY --amount 5 --outdir /path/to/output/dir

Generating Configurations for All Countries

To generate configurations for all available countries:

node index.js --all-countries --wireguard-privatekey YOUR_PRIVATE_KEY --outdir /path/to/output/dir

Generating Configurations for 2 Countries

To generate configurations for all available countries:

node index.js --country JP,DE --wireguard-privatekey YOUR_PRIVATE_KEY --outdir /path/to/output/dir

Contributing

Contributions are welcome. Please open an issue or submit a pull request with your improvements.

License

MIT