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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@attently/compcreate

v1.2.2

Published

A command line tool to create React components

Downloads

33

Readme

compcreate

A command line tool to create React components

Never again copy and paste react boilerplate class definitions, or worry about having to create subdirectories: compcreate allows for generating React components with some custom options for SCSS files, Stateless components, and an index.js files for easier importing.

Installation

yarn global add @attently/compcreate

Note: You may need to run the above as root.

Initial Setup

When compcreate is first run, it will have some interactive prompts to find out how you would like your components to be generated. It will save this configuration, and use it for all future runs.

Usage

To create a new component Foo, simply run the following command:

compcreate /path/to/Foo

where /path/to/ is the directory in which you want Foo to be created.

Options

The initial configuration settings can be overidden for instances where you may not need or want something from it. You can also save the new settings for later runs. Here are the available options:

| Flag | Description | Value To Enable | Value To Disable | | ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------ | ------------------------------ | | -v or --version | Shows compcreate's version number | | no, false, f, n, 0 | | -d or --directory | Whether or not to create the component in a new directory | yes, true, t, y, 1 | no, false, f, n, 0 | | -i or --index | Whter or not to create an index.js file for easier importing from directory. Note: index.js will not be created if compcreate is not creating a directory for the new component, as to not overwrite an existing index.js file. | yes, true, t, y, 1 | no, false, f, n, 0 | | -s or --stateless | Whether or not to create a stateless component that is included inside main component. | yes, true, t, y, 1 | no, false, f, n, 0 | | -c or --scss | Whether or not to create a SCSS file for custom component styles. | yes, true, t, y, 1 | no, false, f, n, 0 | | -j or --jsdoc | Whether or not to insert JSDoc comments into generated component files. | yes, true, t, y, 1 | no, false, f, n, 0 | | --save-config | Save all given flag values as the new default | | |