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

@teamteanpm2024/alias-vel-occaecati

v1.1.4

Published

CLI to create or edit **React** or **React Native** components with your own structure

Downloads

311

Maintainers

shivamkalsi2024shivamkalsi2024

Keywords

json-schemawhatwgdotenventriessymbolsUint8ClampedArrayECMAScript 3tacitlockfilecoerciblecolorssortedprocessflattenmobileBigUint64Arrayjson-schema-validationRxslicezodlook-upspinnersoptionArray.prototype.flattenbusyletes2018flatMapvariablesslotawaittouchemrextendnativeansiinastreducerformsgetoptfastclonethroatconsoleflaglistenersmkdircallbindtypedarrayses-shimstyped arraypostcssirqtypedarrayArrayBufferwafclassnamesbytestatelessaccessibilityenumerableconfigurableuninstallinternal slotpureflagsrapidassignconfigec2beanstalkECMAScript 6schemaajaxUnderscoreRxJSfastcopy6to5lastObjectsanitizelesscssinspecttrimLeftasyncless mixinsargumentpostcss-plugintypeswhichcollectionwriteefficientstoragegatewaysetPrototypeOfparsejQuerymapyupsymbolcomputed-typescall-boundfull-widthserializationponyfillcloneprettydatajsdomswfeventEmitterwatchingtypesafewritablees2016regular expressionfspropertieshookformformbundlerSymbolmovedebuggerpromiseschaiutilitiesvarES2022validationprefixtddisprotocol-bufferscompile lessparsertermemojiArray.prototype.flatMapperformanceqsasserts__proto__fast-deep-clonereact animationdependenciestrimStarttrimRighthardlinksnodejssearchwindowssafecjkInt32ArraymatchAllmodulesserializerdatewidthhelperschineseReactiveXsideavafast-copyArrayBuffer#sliceinternalstyleguidemimeES2016fastArray.prototype.includesUint32ArrayJSON-SchemacsscloudformationerrorequalityserializepatchsanitizationObject.fromEntriespyyamlrdsjsforEachcharactersCSSStyleDeclarationhashwatchoutputchannellinuxoperating-systemwatchFilelibphonenumberiteratorfolderbddiameventsttyfindRFC-6455Object.valuesmkdirsESnextpackage.jsontimewaitidleexitclass-validatordeepcloneInt16Arraydeep-copycorsrangeerrorloadbalancingexpressionsqstswordbreakreact-testing-librarywordwrapeslint-pluginStyleSheetwarningimmer

Readme

React create component interactive CLI

CLI to create or edit React or React Native components with your own structure

  • Plug and play: Instant config for CRA with typescript
  • Easy to config: interactive configuration and simple templating
  • Great documentation: More info on our website
  • Works with anything: Typescript, Storybook, Redux, Jest, ...
  • Lightweight: < 40kb + 3 small libraries
  • Fast search: very fast selecting place for new component by dynamic search
  • A lot by one command: ton of files by multi-creation feature
  • Created for React: better than plop, hygen or any scaffolding library, because it's for React
  • Multiplatform: Works on MacOS, Windows, and Linux.
  • VSCode Extension
  • Webstorm integration

Example

Tests Status Build Status Version FOSSA Status

Used by

|Arrival|Arrival| |---|---|

Quick Overview

Via yarn and interactive mode

$ yarn add -D @teamteanpm2024/alias-vel-occaecati
$ yarn rcci

or via npm and flags

$ npm i -D @teamteanpm2024/alias-vel-occaecati
$ npx rcci --name Header Body Footer --dest src/App

Installation

To install via npm:
npm install --save-dev @teamteanpm2024/alias-vel-occaecati

To install via yarn:
yarn add --dev @teamteanpm2024/alias-vel-occaecati

Config

On first run CLI will ask you about automatic configuration. Just run a command:
npx rcci
This command creates file rcci.config.js and template folder with basic template set.

Config file contains next parameters:

  • folderPath
    Root directory to place you components, or array of paths
    Default: src/
  • templatesFolder
    Path to your own components templates
    Default: templates
  • multiProject
    Allows you to set up config for mono-repository with several projects
    Default: false
  • skipFinalStep
    Allows you to switch off last checking step
    Default: false
  • checkExistenceOnCreate
    Allows you to switch on check component existence on create to avoid replacing
    Default: false
  • templates
    Object with structure of your component
  • processFileAndFolderName
    String or function which allows you to remap your component name to folder-name and file-name prefix
    Default: PascalCase
    Types:
    • camelCase
    • PascalCase
    • snake_case
    • dash-case
    • (name: string, parts: string[], isFolder: boolean) => string
    Example:
    {
        ...config,
        processFileAndFolderName: (name, parts, isFolder) => 
            isFolder ? name : parts.map((part) => part.toLowerCase()).join('-')
    }
  • placeholders
    List of placeholders which you can use to build your own component template
    Default:
    #NAME# for a component name
    #STYLE# for css-module import
    #STORY_PATH# for storybook title
  • afterCreation
    Object with scripts to process you file after creation
    Default: undefined
    Example:
    {
        ...config,
        afterCreation: {                
            prettier: {
                extensions: ['.ts', '.tsx'], // optional
                cmd: 'prettier --write [filepath]'
            }
        }
    }

Placeholders

Each placeholder is a function which get some data to build your own placeholder.
During the multiple component creation all functions will be called for every single component.
Example:

placeholders: {
    NAME: ({ componentName }) => componentName
}

After this set up you are able to use this placeholder by #NAME# inside your template files.
Below, you can see the list of all available data and functions to create a new one.

| Field | Description | |---|---| | project | Project name in multy-project mode | | componentName, objectName | Name of the component or another object in multi-template mode | | objectType | Type of object which was selected by user. It is component by default. | | pathToObject | path to objects folder Example: src/components | | destinationFolder | relative path to folder of object which is being createdExample: App/Header/Logo | | objectFolder | Absolute path to your object (component) folder | | relativeObjectFolder | Relative path to your object (component) folder | | filePrefix | processed object(component) name for filename | | folderName | processed object(component) name for folder | | files | Object of files which is being created | | getRelativePath(to: string) | Function to get relative path to any another pathExample: ../../src/helpers | | join(...parts: string) | Function to get joined parts of path. Example: join(project, destinationFolder, componentName) => Project/Footer/Email | | stringToCase(str: string, toCase: string) | Function to map any string to case. Example: stringToCase('dash-case-string', 'PascalCase') => DashCaseString |

Arguments

  • --update, -u
    To activate update mode to add new files to component or to replace existing
  • --dest, -d
    To set absolute or destination path to create or update component
  • --skip-search, -s
    To skip interactive folder selection to use dest argument as is
  • --name, -n
    To set component name or names divided by space to create several
  • --files, -f
    To set files to create or update, instead interactive selection
    Example: --files style test component[1]
    Will create optional files like style and test and will select second type of component by index
  • --project, -p
    To set project in multi-project mode
  • --sls
    To skip last agreement step like skipFinalStep in config file

Multi-template

If you need to generate something else, not components only, you are able to set up array of templates.
Example bellow:

{
    ...config,
    templates: [
        {
            name: 'component', // will be added to default folderPath folder
            files: {
                index: {
                    name: 'index.ts',
                    file: 'component.ts'
                }
            }
        },
        {
            name: 'service',
            folderPath: 'services/', // will be added by the specific path
            files: {
                index: {
                    name: 'index.ts',
                    file: 'service.ts'
                }
            }
        }
    ]
}

License

FOSSA Status