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

cornerstone-cli

v1.0.0

Published

Cornerstone Framework의 Command Line Interface

Readme

Cornerstone CLI

코너스톤 프레임워크의 Command Line Interface.

설치 방법

cornerstone-clinpm의 패키지로 관리되고 있으므로 Node.js가 설치되어 있어야 한다. 여기에서 Node.js를 다운로드 받을 수 있다.

다음과 같이 npm을 이용해서 cornerstone-cli 패키지를 글로벌하게 설치한다.

npm install -g cornerstone-cli

설치가 완료되면 자동으로 jamjs도 같이 설치된다.

사용 방법

cs 아무 command 없이 사용하면 도움말을 볼 수 있다.

cs

다음과 같이 command와 option을 지정한다.

cs [command] [option]

사용할 수 있는 command는 다음과 같다.

| Command | 기능 | | ------- | --------------------------------------------------------------------------------------- | | init | 프로젝트의 기본 골격을 생성한다. | | build | 프로젝트의 소스 코드로부터 배포본을 생성한다. Gruntfile.js를 수정해서 최적화 옵션과 빌드 방법을 설정할 수 있다. | | server | 개발 중 Preview를 할 수 있는 간이 웹서버의 기능을 수행한다. | | test | 테스트 코드를 실행한다. 테스트 코드는 mocha-phantomjs를 사용해서 작성할 수 있다. |

init command를 사용할 경우 다음과 같은 option을 추가할 수 있다.

| Option | 기능 | | -------------------- | ----------------------------------------------------------------------------------------- | | --noamd | Require.js를 사용하지 않는다. 이 옵션이 없으면 Require.js와 Backbone을 사용하는 것으로 기본 골격을 생성한다. | | --theme [dark/white] | Dark/White 테마 중 하나를 선택한다. 이 옵션이 없으면 Bootstrap의 기본 테마를 사용한다. | | --fullpackage | 코너스톤의 모든 패키지를 설치한다. 이 옵션이 없으면 기본적으로 필요한 최소한의 패키지만 설치한다. |