Quick Start

Pre-ReactJS 🚀

Welcome to Pre-ReactJS — a lightweight frontend framework designed for building Single Page Applications (SPAs) using VanillaJS, HTML, and CSS.


Installation

To get started with Pre-ReactJS, install the package via npm and create your new project:

npm install pre-reactjs
npx create-pre-react-app my-app

This will generate a directory named my-app containing all the starter code for your project. Next, navigate into the directory and install the dependencies:

cd my-app
npm install

Development

To start the development server with hot-reloading, run:

npm run dev

This will launch your application using nodemon, which automatically restarts the server when changes are detected.

Production

To run your application in production mode, use:

npm start 

Good to Go 💻

You're all set to start building! Dive into the Pages/ directory to edit the files or experiment with the logic scripts in the Logic/ directory. Happy coding! 🎉