dctc
v1.0.5
Published
Dynamically compile TSX/TS files and execute them.
Downloads
1,160
Maintainers
Readme
TypeScript Execute (tsx): Dynamically compile TSX/TS file and execute it.
dctc
may be similar tools in the fastest speed of execution!!
Usage
dctc [options] <file>
Options
-h, --help display help for command
-v, --version output the version number
Installation
npm install -g dctc
Example
Step 1: Create Source Files
Create a src
directory and add the following files:
src/index.tsx
import React from 'react';
import Header from './components/Header';
import Footer from './components/Footer';
const Page: React.FC<{ fontColor: string }> = (props) => {
return (
<div style={{ color: props?.fontColor || '#fff' }}>
<Header />
<main>
<h1>Hello, World!</h1>
<p>This is a dynamically compiled TSX file using dctc.</p>
</main>
<Footer />
</div>
);
};
export default Page;
src/components/Header.tsx
import React from 'react';
const Header: React.FC = () => {
return (
<header>
<h2>Welcome to the DCTC Example</h2>
</header>
);
};
export default Header;
src/components/Footer.tsx
import React from 'react';
const Footer: React.FC = () => {
return (
<footer>
<p>© 2025 DCTC Example</p>
</footer>
);
};
export default Footer;
Step 2: Create a tsx script file
/generate-html.tsx
import { renderToString } from 'react-dom/server'
import React from 'react'
import Page from './src'
import fs from 'fs';
import path from 'path';
const work = () => {
const html = renderToString(<Page fontColor="pink" />)
fs.writeFileSync(path.join(__dirname, 'page.html'), html);
return html
}
work()
Step 3: Enter the following command
dctc generate-html.tsx
The page.html
file has been generated, and it looks like this
<div style="color:pink">
<header>
<h2>Welcome to the DCTC Example</h2>
</header>
<main>
<h1>Hello, World!</h1>
<p>This is a dynamically compiled TSX file using dctc.</p>
</main>
<footer>
<p>© 2025 DCTC Example</p>
</footer>
</div>
Open the file page.html
with your browser
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.
Scene
Some scenarios where you need to compile and execute tsx.
- Developed using react, and needed to generate an html template for email.
- When you want to preview a react component, but there is no suitable playground.
Notice
If you need to load the style file, perform an additional loader and eventually insert the style into the html template in the product, but the email template does not support external style import.
License
MIT