NurJS (Nurrage) makes RAGE:MP server development lightning fast β‘.
You can install and initialize it in just a few seconds.
πΉ Step 1 β Install the library
Run this command inside your RAGE:MP server folder:
//bashnpminstallnurrage
This will automatically download and install all dependencies.
πΉ Step 2 β Initialize NurJS
After installation, initialize the library once.
You can do this in your main server file (for example: index.js or app.js):
// server/index.jsconstN=require("nurrage");N.command({ cmd:"testveh", description:"test code vehicle", adminOnly:false, createVehicle:{ model:"sultan", color1:0, color2:0}, notify:"Your car is ready!",});console.log("β NurJS successfully initialized!");
NurJS automatically:
initializes all internal modules (commands, binds, cooldowns, etc.),
creates a /logs folder for your future log files,
prepares the environment for vehicle/object spawning, notifications, and admin checks,
and confirms initialization in the console (β NurJS successfully initialized!).
πΉ Step 3 β Start Coding Immediately
Now you can start writing commands and logic anywhere in your server code.
For example:
Thatβs it β your first command is live!
πΉ Step 4 β Auto Setup (optional)
If you want to auto-initialize NurJS without manual code,
you can run this shortcut once:
Then in your main file, just require it:
and start coding immediately β everything will be ready.
Action
Command
Install
npm install nurrage
Initialize manually
require("nurrage")
Auto setup
npx nurrage init
Ready to code
Use N.command, N.bind, N.mysql, etc.
β‘Next Step:
Explore real use cases and learn how to create more complex commands.