
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
entrypoint barrel file automatically generated cli tool
Have you ever developed a library project in the TypeScript language? Unlike API servers or desktop applications, library projects do not have executable scripts or functions. Therefore, it is common to organize a number of functions and variables to be included in the library in an barrel file. However, it is inconvenient to rewrite the barrel file every time you add a function or variable, and it is easy to make a mistake and miss a function or variable you intended. ctix uses the TypeScript compiler API to automatically generate the barrel file by searching your TypeScript project for functions and variables with the export keyword added.
To summarize,
barrel file or directory-specific barrel filesexport { type IAmSuperHero } from './marvel';barrel file because it uses the TypeScript compiler APIIn addition, ctix will auto-generate barrel files so that a single index.d.ts file can be generated correctly when using the rollup-plugin-dts plugin. Now you can develop your TypeScript library projects more easily!
npm install ctix --save-dev
npx ctix init
npx ctix build
ctix provides interactive prompts to help you create the configuration file. Execute the ctix init command to create a configuration file.
The graph below outlines the behavioral flow of ctix.
flowchart LR
START(start) --> |execute cli|ctix
ctix --> |TypeScript Compiler API| INP01[Source Code files]
ctix --> |TypeScript Compiler API| INP02["tsconfig.json"]
ctix --> |json, json5, yaml| INP03[".ctirc"]
INP01 --> TF[/Summray target source files/]
INP02 --> TF
INP03 --> TF
TF --> TS[/Summray target export statements/]
TS --> IW["index.ts file generation"]
IW --> END(end)
Because ctix uses the TypeScript Compiler API to summary target files and extract export statements, developers don't need to write source code in a special format or make any changes to existing code to make it work.
A barrel is a way to rollup exports from several modules into a single convenient module. The barrel itself is a module file that re-exports selected exports of other modules.
npm install ctix --save-dev
# bundle mode
ctix build --mode bundle -p ./tsconfig.json -o ./src
# create mode
ctix build --mode create -p ./tsconfig.json --start-from ./src
# module mode
ctix build --mode module -p ./tsconfig.json -o ./src/components
The mode in which the barrel file is to be generated. There is a create mode that generates an barrel file per directory, a bundle mode that generates a single barrel file, and a module mode that generates an barrel file by filename for vue, sevelte, etc.
bundle mode | create mode | module mode |
|---|---|---|
![]() | ![]() | ![]() |
Check out the .ctirc in examples/type10 to see how to utilize the module mode.
You can save frequently used configurations. ctix supports saving settings in package.json, tsconfig.json, or a .ctirc file. You can easily create a basic configuration using the ctix init command.
# generate base configuration
ctix init
ctix needs a list of files to generate the index.ts file. You can provide this list using the --include option, which supports glob patterns. If you don't use the --include option, ctix will use the include setting from the .ctirc file. If neither the --include option nor the .ctirc file is provided, ctix will fall back to the include field in the tsconfig.json file.

This diagram shows the file include/exclude mechanism.
ctix gets a glob pattern to generate the index.ts file. The glob pattern is obtained from various configuration files such as:
--includeinclude field in the .ctirc configuration fileinclude field in the tsconfig.json configuration fileIf your index.ts file is empty or a warning is displayed, please check the above configuration.
There are two ways to do this. The first is to create a .ctirc file and set the include or exclude value, which works similarly to the include and exclude values in the tsconfig.json file. The second is to comment out @ctix-exclude at the top of the files you want to exclude, such as eslint.
.ctirc
{
"options": {
"mode": "bundle",
"exclude": ["**/*.storybook.tsx"]
}
}
If you want to use a .ctirc file, I recommend creating one with the npx ctix init command.
You can add configurations using eslint-style inline comments.
If you want to include an entire directory but exclude certain files, instead of writing a complex glob pattern, you can simply use inline comments to exclude the specific files.
/** @ctix-exclude */
const Button = () => {
return <button>Sample</button>;
};
When exporting multiple classes and functions, you can exclude one or two of them if needed.
const Button = () => {};
const GroupButton = () => {};
// @ctix-exclude-next
const UnwantedButton = () => {};
const Checkbox = () => {};
/** @ctix-generation-style default-alias-named-destructive */
const Button = () => {};
const GroupButton = () => {};
// @ctix-exclude-next
const UnwantedButton = () => {};
const Checkbox = () => {};
The export syntax in the index.ts file is determined by the chosen generation style. For more details, refer to the More about Generation Style documentation.
When ctix generates the index.ts file, it uses prettier and prettier-plugin-organize-imports to check if the files to be exported are used. During this process, files that only contain declare module are excluded. This can cause issues if you intend to bundle type files. However, if you add @ctix-declaration to the file, it will be included in the index.ts file. Keep in mind that @ctix-declaration is applied after the exclude option, so make sure the file is not included in the exclude option.
@ctix-declaration does not work when used with export statements in the same file.
/** @ctix-declaration */
declare module '*.vue' {
import Vue from 'vue';
export default Vue;
}
When using task runners like Gulp and Just, as well as bundlers like webpack and rollup, you need a programming interface to add ctix.
| function | option | descryption |
|---|---|---|
| building | TCommandBuildOptions | Execute the build command |
| initializing | TCommandInitOptions | Execute the init command |
| removing | TCommandRemoveOptions, TCommandBuildOptions | Execute the remove command |
Check out the example code.
ctix does not work in JavaScript code because it uses TypeScript API, please use it before Babel translation or TypeScript compilation.
The handling of the default export is an important issue, but many bundlers and type bundlers handle the default export differently, so ctix provides many ways to create a default export.
You can change the generation style of the entire project by setting the generation-style option, or you can change the generation style of only certain files by adding the @ctix-generation-style inline comment at the top of the file.
.ctircIn the examples directory, you can find cases where ctix has been applied to various projects. For detailed explanations, please refer to the Examples README.md file.
| Directory Name | Purpose |
|---|---|
| type03 | When there are duplicate names in the entire project |
| type05 | For React projects |
| type06 | When using TypeScript enums |
| type07 | When using destructive operations on variables for named exports |
| type09 | When using TTF fonts by declaring them as modules and using them in TypeScript |
| type10 | For Vue.js projects |
| type11 | When using Component Props in React projects |
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.
This software is licensed under the MIT.
FAQs
Automatic create index.ts file
The npm package ctix receives a total of 3,529 weekly downloads. As such, ctix popularity was classified as popular.
We found that ctix demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.