Codlook-Approved Ecosystem

The Package & Module
Directory for LOOK

A production-ready open-source ecosystem, reviewed by Codlook.

Total
Built-in
Modules
Packages
Approved
🔍
All 0
Built-in 0
Modules 0
Packages 0

Built-in

ships with the language — no install

Modules

lk module install

Packages

lk install

Built a package or module?

Submit your GitHub repo via a PR — the Codlook team reviews it, and once approved it's added to this directory so every LOOK developer can find you.

Module or Package?

Both install from GitHub. The difference is where it's stored and how it's included.

FeatureModulePackage
ScopeGlobal — across all projectsPer-project — only in that project
Installlk module install github.com/...lk install github.com/...
Install location~/.look/modules/<name>/pkg/<name>/
In codeuse nameuse "pkg/name"
What for?General tools: crypto, mail, cache…Project-specific: auth, CMS, SDK…

How to Install

You don't even need a GitHub account. Copy the command, paste it into your terminal.

Step 1
Pick from the list
Search and filter on this page, copy the install command.
Step 2 — Module
Install globally
To use it across all projects:
lk module install github.com/codlook/look-modules/jwt
Step 2 — Package
Install into a project
Into just that project's pkg/ folder:
lk install github.com/codlook/look-jwt
Step 3
Use it in your code
Include it with use and start using it right away.
use jwt

token = jwt_sign({"id": 1}, "secret")
data = jwt_verify(token, "secret")