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

create-next-beecode-pack

v1.0.2

Published

Nextjs latest starter pack with ts configured and scalable standard approach like eslint, storybook, husky and much more. (tailwindcss and shadcn/ui)

Downloads

27

Readme

Getting Started

Introduction

Starter file which have following installed:

  • NextJs 14
  • Storybook
  • eslint
  • husky
  • shadcn/ui
  • Redux toolkit
  • pre-commit hooks & pre-push hooks

Heads up for you to focus on coding

You can clone this repo and start working without any hassle for you to think about project setup. Everything had been set up for you.

NODE VERSION USED ==> (v20.0.0)

If you have difficulty in installing the packages then it is recommended for you to use the Version mentioned above. (v16.14.0)

Only 'yarn' supported

Project CI/CD Info:

We have setup the commit check for the project, so it is essential to follow these rules when creating the new branch.

For Example: If you are working on the Ticket issued to you and the Ticket Number on the board is SN-1 your new branch name must be feat/SN-1

Also this must be followed when writing commit message as example below: git commit -m 'feat: commit message here..

Note: If you do not follow this rule, you will not be able to commit your branch or will be able to push the branch.

Keys to be used for the branch are:

  • feature -> for any new feature to be developed (recommended for most of the users)
  • hotfix -> for minor fixes on the project
  • bugfix -> for fixing bugs
  • test -> for checking the test
  • ci -> for changes in ci/cd of the project
  • docs -> for updating the docs on the project
  • build -> for pushing the local build
  • revert -> for any revert to the codebase had to be done

Note: (Branch Creation)

  • Always create the new branch from develop as the base branch
  • Branch created must have above mentioned keys as prefix followed by the task the branch is being forked for: feature/SN-101

Storybook: (Intro)

We have storybook implemented on the project and for each component we can find it within the storybook

  • We can start the storybook by running the following command as:
yarn storybook

Default Notes Below (not Recommended)

This is a Next.js project bootstrapped with create-next-app.

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3008 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

http://localhost:3000/api/hello is an endpoint that uses Route Handlers. This endpoint can be edited in app/api/hello/route.ts.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

*** Check this out.....