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

idxgen

v1.3.1

Published

Simple generator of index files for ES-modules or TS-modules

Downloads

24

Readme

npm npm code style: prettier GitHub license

idxgen

Simple generator of index files for ES-modules. It well working with TypeScript, Flow, ESlint, Prettier.

Example of using

If you have this structure in project:

src/
├── C.js
└── foo
    ├── A.js
    └── B.js

After run npx idxgen src, you will have this structure:

src/
├── C.js
├── foo
│   ├── A.js
│   ├── B.js
│   └── index.js
└── index.js

Where src/index.js:

/* Auto-generated - start - do not modify in this block */
export { default as C } from './C';
/* Auto-generated - end */

And src/foo/index.js:

/* Auto-generated - start - do not modify in this block */
export { default as A } from './A';
export { default as B } from './B';
/* Auto-generated - end */

Getting Started

Installing

npm install --save-dev idxgen

Using

Generate index.js files in src folder. It travels recursively.

npx idxgen src/

Run in watch mode:

npx idxgen --watch src/

For disabling generation you can put this annotation:

// idxgen-disable

Configuration

For configure this tool you can create .idxgenrc:

{
  "mode": "manual",
  "exportMode": "single",
  "template": "export { $$ } from './$$';",
  "indexFile": "index.ts",
  "extensions": ["ts", "tsx"],
  "support": {
    "flow": true,
    "eslint": true,
    "prettier": true
  }
}
mode: "manual" | "auto"

In manual mode it will generate exports in index files if it contain // idxgen-enable pragma. In auto mode it will generate exports in all index files if it isn't contain // idxgen-disable pragma. Default value auto.

exportMode: "single" | "default"

In single export mode it will use export { $$ } from './$$'; template instead export { default as $$ } from './$$'; in default mode. Important if template variable is used (or idxgen-template pragma in index file) exportMode will not been applied.

template: string

With this You can override export statement in index files. Or you can override in only one file with // idxgen-template pragma.

indexFiles: string

Filename of index files. Default value: index.js.

extensions: string[]

Extensions of file for lookup in folders. Default value: [".js", "jsx"].

support: object

This object contain support-flags for integration with 3-rd part tools.

flow: boolean

If this support is enabled it will insert // @flow at the top of index file.

eslint: boolean

If this support is enabled it will insert /* eslint-disable import/prefer-default-export */ if you have one export in a index file.

prettier: boolean

If this support is enabled it will insert // prettier-ignore if line will be more than printWidth in prettier config.

License

This project is licensed under the MIT License - see the LICENSE.md file for details