A framework for every developer
- Blazing fast: NitroJS uses its own caching system that was inspired by NextJS's
.next
cache directory. - Easy to use: NitroJS is very easy to use due to us providing most of the module needed to write an entire application, we do our best to keep the framework API as easy as possible to use!
- Use it everywhere: NitroJS is a full-stack framework, thus, we provide modules for building the server application, plus, support for all client platforms such as desktop, mobile and the web, all with JavaScript/TypeScript!
Install the CLI to your system via the following command:
npm install -g @skylixgh/nitrojs@next
CD into your projects folder and run the following command, and YOU MUST select NodeJS as the app type as only that is supported, after this, cd into the newly created directory:
npx nitrojs init
This is for now, but we will do a bug fix on this: Create a nitrojs.config.ts
file and put the following contents:
import { AppConfigType, typeConfig } from "@skylixgh/nitrojs-cli";
export default typeConfig({
type: AppConfigType.node
});
After that run the following command after you:
npm install
Now lets run your app:
npx nitrojs dev
And thats it, you made your first NitroJS app!
Edit the files to see your changes apply in real-time!