New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-rts-kit

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-rts-kit

Template for React, TypeScript, ESLint, Stylelint and rsbuild.

latest
Source
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

create-rts-kit

A simple project template for setting up a React, TypeScript, ESLint, Stylelint, and rsbuild environment quickly.

Features

  • React: JavaScript library for building user interfaces.
  • TypeScript: Typed superset of JavaScript that compiles to plain JavaScript.
  • ESLint: Linting tool for JavaScript/TypeScript to help maintain code quality.
  • Stylelint: Linter for CSS/SCSS and styled-components.
  • rsbuild: A fast and simple build tool.

Installation

You can create a new project using this template with either npx or yarn.

Using npx:

npx create-rts-kit my-app
cd my-app
npm install

Using yarn:

yarn create rts-kit my-app
cd my-app
yarn install

Replace my-app with your desired project name.

Project Structure

Once the project is created, the folder structure looks like this:

my-app/
├── src/
│   ├── App.tsx
│   ├── index.tsx
├── tsconfig.json
├── eslint.config.mjs
├── rsbuild.config.ts
├── .stylelintrc.json
├── package.json
└── README.md

Scripts

Inside your project, you can run the following scripts:

  • yarn dev - Starts the development server using rsbuild.
  • yarn lint - Runs ESLint to lint the .ts and .tsx files.
  • yarn lint:style - Runs Stylelint to check your styles.

Customization

Feel free to customize the tsconfig.json, eslint.config.mjs, rsbuild.config.ts or .stylelintrc.json to fit your project’s needs.

License

This project is licensed under the MIT License.

Keywords

template

FAQs

Package last updated on 20 Aug 2025

Did you know?

Socket

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.

Install

Related posts