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

munro-web

v14.2.2-5.1

Published

Headless Magento setup that uses NextJS framework with GraphQL, Jest+React Testing Library, Husky + commitLint + lint-staged, ESLint, Prettier

Downloads

2

Readme

Munro Footwear Group

Headless Magento setup that uses NextJS framework with GraphQL, Jest+React Testing Library, Husky + commitLint + lint-staged, ESLint, Prettier

Pre-requisite

  • Node version >= 16.8.0

Getting Started

First, clone this repository using production branch and install dependencies. Please take note that this project has private dependency, please setup GITHUB token and modify .npmrc. You may also need to setup hostnames in your machine.

Please follow instructions in below guide for local development setup:

SSL Certificates

Note: Port 3001 is used for SSL and forwarded through to 3000 via a script. This means we will use port 3000 for local dev server frontend domain.

Locally signed SSL certificates are required for https on local dev environment. For SSL Certificate setup please refer to this documentation page in confluence

Local Dev Server URLs

Local dev server url can be found below, replace brand with appropriate brand

https://local-next.brand.com.au:3000

Examples

https://local-next.williamsshoes.com.au:3000

https://local-next.styletread.com.au:3000

Script: Development

NOTE: SSL Certificate needs to be set up first, see above.

Start server in development mode with https (Use This Command)

This will start a server in dev mode. This environment will hot reload, show full errors, etc. Generally this is the command you should run on local to start dev server

npm run dev

NextJS Core Memory Leak Issues (Alternatively Use These Commands)

Note: Production mode server will NOT show errors by default.

If you experience NextJS memory leak issues, see below for work around:

  • Step 1 - Run build using .env.development file in production mode:

npm run build:dev

  • Step 2 - Start server using build files and .env.development from previous step, in production mode

npm run start:dev

Build and Start Environment Specific Server

NOTE: replace env below with name of environment from package.json (e.g. staging, production)

Note: Production mode server will NOT show errors by default.

This will start server in production mode using the .env file of the specified environment. E.g. staging will use .env.staging

  • Step 1 - Run build using .env.development file in production mode:

npm run build:env

Example npm run build:staging

  • Step 2 - Start server using build files and .env.development from previous step, in production mode

npm run start:env

Example npm run start:staging

Start HTTP Server (Fallback Only)

  • Below is purely a fallback, this generally isn't used.
  • Fall back option open dev server with http (non-secure connection):

npm run dev:http

Script: Testing

// run unit test
npm run test

// run unit test and watch for changes
npm run test:w

Script: Tools

// check for Typescript errors
npm run check-types

// check for formatting errors
npm run format

// check for formatting errors and fix
npm run format:fix

// .clean .next folder
npm run clean

GIT Guidelines

See: https://munrofootweargroup.atlassian.net/wiki/spaces/WDT/pages/1902248086/GIT+Commit+Guidelines

Build & Deployment

See: https://munrofootweargroup.atlassian.net/wiki/spaces/WDT/pages/1839956197/CICD+Automation+Testing+and+Deployment