Installation Guide for the Kawkab Framework
The Kawkab Framework provides a flexible and powerful development environment for building modern web applications. In this guide, we will cover the steps to install Kawkab using Node.js and Bun.
Installation via Node.js
Prerequisites:
Before you begin, make sure you have Node.js and npm installed on your device. To get the required version, you can download Node.js from the official website, ensuring you are using version 18.0 or higher.
Create a New Project with Kawkab:
To start a new project using Kawkab, run the following command in the terminal:
npx create-kawkab-app@latest init my-kawkab-app
This command will create a new project named app
inside a separate folder that contains all the necessary configuration files for Kawkab.
Navigate to the Project Folder:
Once the project is created, navigate to the folder using the following command:
cd my-kawkab-app
Start the Development Server:
To start the local development server for Kawkab, use the following command:
npm run dev
The development server will run on the local link http://localhost:3000
, allowing you to preview your application and test all features in real-time.
Now your application is ready! Kawkab provides many built-in tools and features that help you build high-quality web applications quickly and efficiently.
Installation via Bun
If you prefer to use Bun as a fast and efficient JavaScript runtime, you can install Kawkab using the Bun CLI by following these steps:
Create a New Project with Kawkab via Bun:
bunx create-kawkab-app@latest init my-kawkab-app
The rest of the steps are exactly the same as described in the Node.js installation method.
Conclusion
Now you can choose the method that suits you best to start building your application using Kawkab. Whether you’re using Node.js or Bun, this framework offers you an integrated development environment to build modern, flexible, and scalable web applications.
Start now and enjoy a seamless and powerful development experience!