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

next-builder

v1.0.5

Published

Next Builder is a CLI tool designed to streamline the process of creating organized components and pages in a Next.js v14 project using TypeScript and the app router. It automates the creation of files and directories, ensuring a consistent structure and

Downloads

22

Readme

Next Builder

What is Next Builder?(en)

Next Builder is a CLI tool designed to streamline the process of creating organized components and pages in a Next.js v14 project using TypeScript and the app router. It automates the creation of files and directories, ensuring a consistent structure and helping developers focus on writing code rather than setting up files and directories.

Next Builder Nedir?(tr)

Next Builder, TypeScript ve app router kullanan Next.js v14 projelerinde düzenli bileşenler ve sayfalar oluşturmayı sağlayan bir CLI aracıdır. Dosya ve dizinlerin oluşturulmasını otomatikleştirir, tutarlı bir yapı sağlar ve geliştiricilerin dosya ve dizin kurulumlarıyla uğraşmak yerine kod yazmaya odaklanmasına yardımcı olur.

How to Use

How to Install

npm install -g next-builder

How to Create a Page

To create a new page, use the cp (create page) command. The command will generate the necessary files and directories based on the provided options.

Sayfa Nasıl Oluşturulur

Yeni bir sayfa oluşturmak için cp (create page) komutunu kullanın. Komut, sağlanan seçeneklere göre gerekli dosya ve dizinleri oluşturacaktır.

Example Usage:

# Create a new page with the name 'MyPage'
# 'MyPage' adında yeni bir sayfa oluşturun
next-builder cp MyPage
# Folders structure for this example : app/(pages)/MyPage

# Create a new page with an author name and group
# Yaratıcı ismi ve grup ile yeni bir sayfa oluşturun
next-builder cp MyPage -a "Author Name" -g "MyGroup"
# Folders structure for this example : app/(pages)/(MyGroup)/MyPage

# Create a new page in a specific directory
# Belirli bir dizinde yeni bir sayfa oluşturun
next-builder cp MyPage -d "my-directory"
# Folders structure for this example : app/(pages)/my-directory/MyPage

# Create a new page with parallel routing enabled
# Paralel yönlendirme etkin olan yeni bir sayfa oluşturun
next-builder cp MyPage -p -d parallel
# Folders structure for this example : app/(pages)/parallel/@MyPage

How to Create a Component(en)

To create a new component, use the cc (create component) command. The command will generate the necessary files and directories based on the provided options.

Bileşen Nasıl Oluşturulur(tr)

Yeni bir bileşen oluşturmak için cc (create component) komutunu kullanın. Komut, sağlanan seçeneklere göre gerekli dosya ve dizinleri oluşturacaktır.

Example Usage:

# Create a new component with the name 'MyComponent'
# 'MyComponent' adında yeni bir bileşen oluşturun
next-builder cc MyComponent
# Folders structure for this example : app/components/MyComponent
# Ornek için dosya yapısı : app/components/MyComponent

# Create a new component with an author name
# Yaratıcı ismi ile yeni bir bileşen oluşturun
next-builder cc MyComponent -a "Author Name"

# Create a new component in a specific directory
# Belirli bir dizinde yeni bir bileşen oluşturun
next-builder cc MyComponent -d "my-directory"
# Folders structure for this example : app/components/my-directory/MyComponent
# Ornek için dosya yapısı : app/components/my-directory/MyComponent


### Additional Information(en)
- The CLI tool assigns a default background color to each page and component.
- Components are given simple props which are useful for TypeScript.

### Ek Bilgiler(tr)
- CLI aracı, her sayfa ve bileşene varsayılan bir arka plan rengi at
- Bileşenlere, TypeScript için yararlı olan basit özellikler verilir.