Welcome to NurJS (Nurrage) LIB

NurJS (also known as Nurrage)** is an open-source framework for fast and flexible development on the RAGE:MP platform.

💡 About the Project NurJS was created from the idea that RAGE:MP scripting should be simple and beautiful — without spaghetti code and chaos. The library unites all essential logic into one clean system:

  • 🔹 Commands (N.command)

  • 🔹 Key bindings (N.bind)

  • 🔹 Database queries (N.mysql)

  • 🔹 Teleports, blips, and doors

  • 🔹 Admin rights, cooldowns, and safe actions

Everything is done in pure JavaScript (Node.js) and optimized for performance. Instead of writing hundreds of lines, developers use one unified syntax to build powerful gameplay features.

🧩 Philosophy Our mission is to make server-side scripting faster, safer, and more enjoyable for both beginners and experienced developers. 🚀 Get Started 👉 Go to the next page to begin your setup guide:

📦 Installation & Setup →

Get started in 5 minutes

NurJS keeps your code clean and efficient. Focus on creativity — the framework handles all the boring parts.

Save time and energy build your RAGE:MP project smarter and cleaner.

Installation

index.js
// One line — endless power 💥
N.command({
  name: "garage",
  description: "Open your garage and get a car",
  adminOnly: false,
  log: "Garage opened", // лог в консоль
  logToFile: {
    file: "garage.log",              // куда писать лог
    message: "Player opened garage"  // текст в файле
  },
  checker: { prison: 0, join: true },
  createVehicle: { model: "sultan", color1: 0, color2: 0 },
  notify: "Your car is ready!",
  tpToMarker: true
});

Last updated