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 🙏

© 2026 – Pkg Stats / Ryan Hefner

nexus_graphql_cli

v1.0.1

Published

<p align="center"> <img width="800px" src="https://github.com/Capstone-Team4/nexus-cli/blob/main/images/logo.png" alt="Nexus" /> </p>

Readme

What is Nexus?

Nexus is a GraphQL Backend-as-a-Service. This is a great way for you and your team to test if Nexus is right for your project! With Nexus, you can easily generate a GraphQL server that connects to all of your data sources and test queries quickly on your own AWS infrastructure. Nexus takes your data sources, whether it be a Postgres Database, GraphQL API Endpoint, REST API or all three. The GraphQL we create for you creates a unified schema, giving your frontend team a single endpoint to make queries to. You can test your queries in your local development environment and when you're ready, we can take care of deploying your graphql backend to your AWS infrastructure. Once your backend is deployed to AWS, you will receive an API Endpoint, with which you can give to your frontend team to quickly make queries to. Take a look at our case study to learn more about GraphQL and how we built Nexus.

The Team

:woman_technologist: Felicia Bacon Software Engineer College Station, Texas

:man_technologist: Benjamin Perrault Software Engineer Tulsa, Oklahoma

:woman_technologist: Kimberly Ramirez Software Engineer Colorado

:man_technologist: Matthew Malane Software Engineer Huntington Beach, California

:heavy_check_mark: Prerequisites

  • Docker (Make sure Docker Daemon is running)
  • AWS IAM Account
  • AWS CLI installed and configured
  • Node
  • NPM

:desktop_computer: Commands

| Commands | Description | | ----------------- | ----------------------------------- | | nexus init | Creates and Configures your project | | nexus dev | Starts mesh server | | nexus dashboard | Starts dashboard | | nexus deploy | Deploys server to AWS | | nexus redeploy | Redeploys changes to AWS | | nexus destroy | Destroys AWS infrastructure |

:desktop_computer: Setup & Installation

1. npm install nexus-cli

  • Installs the Nexus CLI NPM package

2. npm install -g .

  • Globally Installs all Nexus commands

3. nexus --help

  • Displays a list and descriptions of all Nexus commands

4. mkdir <project directory name> && cd <project directory name>

  • Create a new empty directory where you will run your project

5. nexus init or nexus i

  • Initializes your new project that contains a .meshrc.yaml configuration file. Nexus adds your data sources to this file to configure your GraphQL server.

:technologist: Development

Once you have created your project and added data sources, you can run your GraphQL server in your local environment. This is a quick way to test your queries and make sure things are working correctly before you deploy your server to your AWS infrastructure.

nexus add or nexus a

  • Asks for your data source name
  • You can 3 options: Postgres Database, GraphQL API Endpoint and REST API Endpoint
  • Asks for your connection
  • For Postgres, you will enter a connection string
  • For GraphQL and REST, you will enter an endpoint

nexus dev or nexus d

  • Spins up your local development GraphQL Server
  • Opens a browser page at localhost with the port you specified in the command line
  • From here, you can make queries to your data sources
  • Any data sources that you add through nexus add will be reflected in the Explorer

nexus dashboard

  • Spins up your project dashboard
  • You can add, edit and remove data sources
  • You have a few options when it comes to deploying to your AWS infrastructure:
    • If you have not deployed your server yet, you can click the deploy button
    • If you have already deployed your project, you can make changes to your data sources and then redeploy your project
  • On the GraphiQL tab, you can view your local development environment. This GraphiQL looks similiar to the GraphiQL that appears in your browser at localhost when you run the command nexus dev
  • When you make changes to your data sources, a new GraphiQL environment will generate after a few seconds. This will reflect all of your data source changes.

:rocket: Deployment

We automate the process of deploying your server to AWS to make things easier for you and your team. With one command, we provision AWS infrastructure for you on your account. Your server will run on an AWS EC2 instance that is provisioned through AWS Fargate and ECS.

nexus deploy

  • Creates a Docker image that packages up your code
  • specify steps user will take
  • You are prompted to enter your AWS region
  • etc.

:arrow_lower_left: Teardown

You can decide to teardown your AWS resources. This will not destroy your GraphQL server project.

nexus destroy

  • Destroys your AWS ECS Fargate infrastructure