
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
create-reactronbase
Advanced tools
![]()
ReactronBase is a robust boilerplate project designed for modern web and desktop applications. It integrates a variety of technologies including React, Tailwind CSS, Electron, SCSS, TypeScript, and Prisma, providing a solid foundation for building scalable applications.
React
![]()
Tailwind CSS

Electron
SCSS
![]()
TypeScript
Prisma
Here’s an overview of the project structure:
ReactronBase/
│
├── dist/ # Compiled output
├── node_modules/ # Node.js dependencies
├── package.json # Project metadata and dependencies
├── package-lock.json # Exact versions of dependencies
├── postcss.config.js # PostCSS configuration
├── prisma/ # Prisma schema and configuration
│ └── schema.prisma
├── public/ # Public assets
│ └── assets/
│ └── images/
│ └── logo.png
├── src/ # Source code
│ ├── db/ # Database related files
│ │ ├── helper/
│ │ ├── models/
│ │ ├── reset.js
│ │ ├── reset.ts
│ │ ├── seeder.js
│ │ └── seeder.ts
│ ├── main/ # Main process files for Electron
│ │ ├── index.ts
│ │ └── preload.ts
│ ├── renderer/ # Renderer process files
│ │ ├── app/
│ │ │ ├── components/
│ │ │ ├── modules/
│ │ │ └── pages/
│ │ ├── index.html
│ │ ├── index.scss
│ │ ├── index.tsx
│ │ └── styles.css
│ ├── types/ # TypeScript type definitions
│ │ └── images.d.ts
│ └── utils/ # Utility functions
└── webpack.config.js # Webpack configuration
To get started with ReactronBase, follow these steps:
git clone https://github.com/your-username/ReactronBase.git
cd ReactronBase
npm install
You can quickly set up a new project using the command:
npx create-reactronbase <app-name>
Replace <app-name> with the name of your new application. This command will scaffold a new project with ReactronBase as the starting point.
To build the project for production, including both renderer and main processes:
npm run build
This command performs two key tasks:
build:renderer: Uses Vite to build the frontend assets. This includes transforming and bundling your React components and styles into optimized static files.
build:main: Compiles TypeScript files for the Electron main process using tsc (TypeScript Compiler), outputting the result into the dist/main directory.
To start the development server and view the app in your browser:
npm start
This command will serve the frontend files on localhost:9000 and open your default web browser to this address.
To start the development server and run the Electron app:
npm run electron
This command launches the Electron application, integrating the built React frontend within a desktop window.
Here are some useful commands for development and production:
Start Development Server: npm run dev
Runs both Vite for the web and Electron for the desktop in development mode.
Build Project: npm run build
Builds both the frontend and Electron main process for production.
Start Electron App: npm run electron
Runs the Electron app with the built files.
Package Electron App: npm run package
Packages the Electron app for Windows (win32) and x64 architecture, including Asar packaging.
Reset Database: npm run reset
Resets the database to its initial state.
Seed Database: npm run seed
Seeds the database with initial data.
Force-Seed Database: npm run force-seed
Resets and seeds the database with initial data.
The frontend code is located in the src/renderer directory. The main entry point is app.tsx in src/renderer/app.
npm run build:renderer to bundle the frontend assets using Vite.The backend code, including database operations and models, is located in the src/db directory.
The database schema is defined in prisma/schema.prisma. To update the schema, modify this file and run:
npx prisma migrate dev
To manage your database:
Reset the Database:
npm run reset
Seed the Database:
npm run seed
Force-Seed the Database:
npm run force-seed
We welcome contributions to ReactronBase! To contribute:
If you find this project useful, please give it a ⭐️ star on GitHub!
ReactronBase is licensed under the MIT License. See the LICENSE file for more details.
We are working on several exciting features, including:
Check out our upcoming example apps to see ReactronBase in action and get inspiration for your own projects!
FAQs

The npm package create-reactronbase receives a total of 0 weekly downloads. As such, create-reactronbase popularity was classified as not popular.
We found that create-reactronbase demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.