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

root-up

v2.0.8

Published

generator for template folder by boilerplate

Downloads

7

Readme

Root Up

banner

English | 한국어

목차

🗂 Root Up이 뭔데?

Root Up 이란, 반복되어 사용되는 폴더 템플릿이 있는 사람들에게 손쉽게 폴더 구조를 생성할 수 있게 해주는 패키지입니다.

🚗 설치

전역 설치

# yarn을 사용할 경우
yarn global add root-up
# npm을 사용할 경우
npm install -g root-up

로컬 설치

# yarn을 사용할 경우
yarn add -D root-up
# npm을 사용할 경우
npm install -D root-up

주의: 만약 npm 버전 5.0.0 이전의 버전을 사용할 경우 --save 옵션을 꼭 넣어주어야 합니다.

아래와 같이 package.json의 scripts에 추가해줍니다.

"scripts": {
   "root-up": "root-up"
},

🛑 시작하기 전에

시작하기 전에, 워크스페이스의 루트 경로에 .template라는 폴더를 꼭 생성해야 합니다.
.template폴더는 아래와 같이 구성되어야 합니다.

/.template
   /<templateFolder>
   /<templateFolder>
   ...
   config.json

.template폴더 예시 확인하기

templateFolder

/<templateFolder> 은 자주 사용되는 템플릿 폴더입니다.
prefix가 제대로 설정되었는지, config.json에 명시되어있는 내용과 일치하는지를 꼭 확인하세요

config.json

.config.json 파일은 다음과 같이 구성되어야 합니다.

{
  "prefix": "내가_좋아하는_PREFIX",
  "output": "내가_자주_사용하는_output_path",
  "excludePath": "내가_무시하고_싶은_folder_name_prefix"
}

prefix: prefix 속성은 이름으로 대체되는 속성입니다. 파일의 이름과 코드 내부에서 사용되었을 때,
입력된 name으로 대체됩니다.

output: output 속성은 템플릿을 통해 생성된 폴더가 위치할 경로를 명시합니다.
명령어가 실행된 workspace를 기준으로 상대경로를 명시합니다.

excludePath:
excludePath 속성은 생성할 폴더를 검색할 때 무시하고 싶은 폴더 이름을 설정할 수 있습니다.
(예를 들면, .yarn 폴더와 같이요!)
default로 node_modules.git이 설정되어있습니다.

🚀 실행 방법

# 전역으로 설치된 경우
root-up

# 로컬로 설치된 경우
yarn <command> # package.json에 명시된 명령어를 입력합니다.

🚕 예제

npx를 사용할 수도 있습니다.

https://user-images.githubusercontent.com/57122180/218425678-eabb9b8d-f7a2-4048-bec1-e32f2da900b0.mov

Contributing

기여는 언제든지 환영입니다!