Lua

Rules Engine: A Mini Language Inside Lua

Use metatables to build a fluent rule language, so business logic reads like rule('vip'):when(...):when(...). Lua's metaprogramming, unlocked.

LuaAdvancedPortfolio piece

What you'll be able to build

Use metatables to build a fluent rule language, so business logic reads like rule('vip'):when(...):when(...). Lua's metaprogramming, unlocked. Along the way you pick up real, transferable Lua skills, not just this one project:

  • metatables and __index for OOP-style methods
  • method chaining by returning self
  • setmetatable to create class-like objects
  • storing functions (predicates) in tables
  • iterating and short-circuiting conditions
  • first-class functions and closures

A course like this one

Yours is built from your own placement, so module count and depth will differ. This map shows what a advanced-level Lua learner building Rules Engine actually gets.

  1. Module 1: Idiomatic Lua and string patterns5 lessons

    Builds the production-ready version of the script for your rules engine.

  2. Module 2: Closures, upvalues, and varargs5 lessons

    Builds the production-ready version of the reusable module for your rules engine.

  3. Module 3: Metatables, OOP, and coroutine schedulers5 lessons

    Builds the production-ready version of the metatable behaviour for your rules engine.

  4. Module 4: Sets, lookups, and sparse tables5 lessons

    Builds the production-ready version of the table model workflow for your rules engine.

  5. Module 5: Iterators and stateful loops5 lessons

    Builds the production-ready version of the function that powers your rules engine.

  6. Module 6: Sandboxing and production hardening3 lessons

    Builds the production-ready version of the release package for your rules engine.

How the lessons actually work

Leans on:table

Every lesson has you predict what a piece of Lua code will output before you run it, then run it for real in your browser and fix what you got wrong. Each module ends in a challenge gate with hidden tests, so you can't advance until your code actually works. The course closes with a capstone that assembles everything into Rules Engine, and a runnable proof page tied to your own code.

Common questions

How long does the Rules Engine: A Mini Language Inside Lua course take?

about 7 hours, across 6 modules and 28 lessons, at roughly 15 minutes per lesson. Your own course may run shorter or longer, since it's sized to your placement result, not a fixed template.

Do I need experience?

Yes. This is an advanced-tier Lua project, so it assumes you're already comfortable writing and reading Lua before you start.

How much does it cost?

$15 one-time, no subscription. The first module is free, so you can see exactly how the course teaches before you pay for the rest.

No subscription. Module one is free.

Build my Rules Engine