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

solx-ctix

v1.5.5-rc.2

Published

Automatic create index.ts file

Downloads

6

Readme

ctix - Next generation Create TypeScript Index file

Download Status Github Star Github Issues NPM version License ctix

Installation

npm i ctix --save-dev

Usage

ctix create -p ./tsconfig.json

Introduction

You have to create a list of files when bundling with webpack and rollup.js, or creating documents with typedoc. It's boring to re-list files every time they change files change. ctix is a simple tool that automates the creation of file lists.

Why ctix?

An application project has a clear entry point, but if it is a library project, the entry point is not clear, so you have to create it yourself. typedoc have to explicitly specify what to document, even for an application project.

  1. use TypeScript compiler API
  2. create index.ts file by separating default export and export
  3. support isolatedModules option
  4. various ignore options such as gitignore, npmignore, citignore

Important

ctix does not work in JavaScript code because it uses TypeScript API, please use it before Babel translation or TypeScript compilation.

How to works?

ctix use TypeScript Compiler API and directory structure. Export something from TypeScript source file after run ctix to create index.ts file.

Create mode: As-Is tree structure

├─ src/
│  ├─ component/
│  │  ├─ Nav.tsx
│  │  ├─ Button.tsx
│  │  ├─ Input.tsx
│  ├─ pages/
│  │  ├─ Hero.tsx
│  │  ├─ User.tsx
├─ App.tsx

Create mode: To-Be tree structure

After ctix create -p ./tsconfig.json command.

# To-Be
├─ src/
│  ├─ component/
│  │  ├─ Nav.tsx
│  │  ├─ Button.tsx
│  │  ├─ Input.tsx
│  │  ├─ index.ts   # created
│  ├─ pages/
│  │  ├─ Hero.tsx
│  │  ├─ User.tsx
│  │  ├─ index.ts   # created
│  ├─ index.ts      # created
├─ App.tsx
├─ index.ts         # created

Each file is as belows:

Create mode: src/component/index.ts

// created from 'ctix'
export * from './Nav';
export * from './Button';
export * from './Input';

Create mode: src/pages/index.ts

// created from 'ctix'
export * from './Hero';
export * from './User';

Create mode: src/index.ts

// created from 'ctix'
export * from './component';
export * from './pages';

Create mode: index.ts

// created from 'ctix'
export * from './App';
export * from './src';

Single mode: As-Is tree structure

├─ src/
│  ├─ component/
│  │  ├─ Nav.tsx
│  │  ├─ Button.tsx
│  │  ├─ Input.tsx
│  ├─ pages/
│  │  ├─ Hero.tsx
│  │  ├─ User.tsx
├─ App.tsx

Single mode: To-Be tree structure

After ctix single -p ./tsconfig.json command. single mode create one index.ts file.

├─ src/
│  ├─ component/
│  │  ├─ Nav.tsx
│  │  ├─ Button.tsx
│  │  ├─ Input.tsx
│  ├─ pages/
│  │  ├─ Hero.tsx
│  │  ├─ User.tsx
├─ App.tsx
├─ index.ts         # created

Each file is as belows:

Single mode: index.ts

// created from 'ctix'
export * from './component/Nav';
export * from './component/Button';
export * from './component/Input';
export * from './pages/Hero';
export * from './pages/User';
export * from './App';

Pros & Cons

Pros

  1. pass tsconfig.json file, another process don't care about
  2. Support default exportation
    • using TypeScript API so detect default export and named export
    • my_default_index.test.ts file create export { default as myDefaultIndexTest } from './my_default_index.test.ts'
  3. Partial ignore
    • specific export statement exclude on index.ts file.
    • eg. { "my_lib_package.ts": ["exists", "temp"] }
  4. Skip empty directory
  5. isolatedModules support

Cons

  1. It may be slow for some project
    • since ctix uses TypeScript compiler API, big projects may take time to generate index files

What is difference Re-Map paths?

It is not recommended to use index.ts file to re-map paths or shorten the paths. If you want to shorten the paths use Re-Map paths feature in TypeScript compilerOptions. ctix is recommended for webpack and rollup.js, typedoc entrypoint and TypeScript declaration file bundling.

Option

| Name | Short | Default | Command | Description | | :--------------- | ----- | ----------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------ | | --config | -c | | All | configuration file(.ctirc) path | | --project | -p | required | All | tsconfig.json path: you must pass path with filename, like this "./tsconfig.json" | | --spinnerStream | | stdout | All | Stream of cli spinner, you can pass stdout or stderr | | --progressStream | | stdout | All | Stream of cli progress, you can pass stdout or stderr | | --reasonerStream | | stderr | All | Stream of cli reasoner. Reasoner show name conflict error and already exist index.ts file error. You can pass stdout or stderr | | --startAt | -a | = --project | All | start working from startAt directory. If you do not pass startAt use project directory. | | --exportFilename | -f | index.ts | create, single, remove | Export filename, if you not pass this field that use "index.ts" or "index.d.ts" | | --useSemicolon | -s | true | create, single | add semicolon on line ending at every export statement | | --useTimestamp | -t | false | create, single | timestamp write on ctix comment right-side, only works in useComment option set true | | --useComment | -m | true | create, single | ctix comment add on first line of created export file(default index.ts) file, that remark created from ctix | | --quote | -q | ' | create, single | change quote character at export syntax | | --keepFileExt | -k | ' | create, single | keep file extension on export statement path literal | | --overwrite | -w | ' | create, single | overwrite each index.ts file | | --ignoreFile | -g | | create, single | ignore file name. You can pass ignore, config file at ctix and use it like profile | | --noBackup | | false | create, single | not create backup file even if set overwrite option enable | | --skipEmptyDir | -e | ' | create | empty directory skip create index.ts file | | --output | -o | N/A | single | output directory | | --useRootDir | -r | false | single | output file under rootDir in tsconfig.json. | | --includeBackup | -b | false | remove | If this option set true on remove mode what will be delete backup file. |

Ignore

Ignore file 3 way belows:

  • .gitignore
  • .npmignore
  • .ctiignore

.gitignore file follow .gitignore spec 2.22.1. .ctiignore file key follow .gitignore spec 2.22.1. .gitignore spec 2.22. spec using by ignore package. .npmignore spec using by minimatch

.ctiignore

.ctiignore file is json with comments. See below.

{
  "juvenile/**": "*",
  "wellmade/FlakyCls.ts": "*",
  "wellmade/WhisperingCls.ts": "*",
  "wellmade/ChildlikeCls.ts": ["transfer", "stomach"]
}

json key indicate ignore file path. You can use glob pattern like .gitignore. If set '*' character at value that is totally ignore file or glob pattern. If set string array that is ignore type name array.

ignore testcase

testcase directory ignore using glob pattern.

{
  // ignore testcase file
  "**/__tests__/*": "*"
}

The testcase file is ignored if you add to the ignore file or if there is no export syntax.

rootDir, rootDirs

useRootDir option activate using rootDir option in tsconfig.json. This option run below flowchart.

CLI with .ctirc

ctix cli support .ctirc configuration file. Available name is only .ctirc. Also cti cli arguments forced applied. And .ctirc file can write json with comments.

.ctirc creation

You can use cli for .ctirc file creation.

# create current directory
> cti init

# pass tsconfig.json path
> cti init -p ./server/tsconfig.json

Breaking Change

0.6.x and 1.x version big different. See migration guide. cli command, option, ignore file changed. Support TypeScript 4.7.2 and new file extensions(.mts, .cts, etc).

Programming interface

Each command can use that function. Each function can pass isMessageDisplay flag second parameter. isMessageDisplay pass false or undefined after not display console message and progress.

| Function | Argument | command | | :-------------- | :----------------------------------------- | :-----: | | createWritor | TCreateOptionWithDirInfo, isMessageDisplay | create | | singleWritor | TSingleOptionWithDirInfo, isMessageDisplay | single | | removeIndexFile | TRemoveOptionWithDirInfo, isMessageDisplay | remove | | createInitFile | TTInitOptionWithDirInfo, isMessageDisplay | init |