All Projects → ije → land

ije / land

Licence: MIT license
Run Deno X module without installation.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to land

Maid
Markdown driven task runner.
Stars: ✭ 1,999 (+5025.64%)
Mutual labels:  runner
dmm
Lightweight Deno Module Manager
Stars: ✭ 59 (+51.28%)
Mutual labels:  deno
discord-emoji
[Library/Deno] A near exact emoji tables of Discord for string-based insertion of emotes without having to escape Unicode.
Stars: ✭ 37 (-5.13%)
Mutual labels:  deno
Code Sketch
一个你最初写代码的地方…
Stars: ✭ 176 (+351.28%)
Mutual labels:  runner
ptera
Ptera is DateTime library for Deno
Stars: ✭ 62 (+58.97%)
Mutual labels:  deno
core
Server side rendering with The Elm Architecture in Deno
Stars: ✭ 16 (-58.97%)
Mutual labels:  deno
Foy
A simple, light-weight and modern task runner for general purpose.
Stars: ✭ 157 (+302.56%)
Mutual labels:  runner
awesome-oak
A list of community projects for oak
Stars: ✭ 63 (+61.54%)
Mutual labels:  deno
superdeno
Super-agent driven library for testing Deno HTTP servers.
Stars: ✭ 119 (+205.13%)
Mutual labels:  deno
i18next-fs-backend
i18next-fs-backend is a backend layer for i18next using in Node.js and for Deno to load translations from the filesystem.
Stars: ✭ 67 (+71.79%)
Mutual labels:  deno
Nake
Magic script-based C# task runner for .NET Core
Stars: ✭ 183 (+369.23%)
Mutual labels:  runner
Task Easy
A simple, customizable, and lightweight priority queue for promises.
Stars: ✭ 244 (+525.64%)
Mutual labels:  runner
astrodon
Make Desktop apps with Deno 🦕
Stars: ✭ 826 (+2017.95%)
Mutual labels:  deno
Jerverless
Turn anything into an on-prem serverless function
Stars: ✭ 171 (+338.46%)
Mutual labels:  runner
await
28Kb, small memory footprint, single binary that run list of commands in parallel and waits for their termination
Stars: ✭ 73 (+87.18%)
Mutual labels:  runner
Kubernetes Gitlab
Manifests to deploy GitLab on Kubernetes
Stars: ✭ 160 (+310.26%)
Mutual labels:  runner
QshOni
The QShell on IBM i library contains useful CL wrapper commands to allow QShell and PASE apps to be called and consumed from regular IBM i jobs via CL, RPG or COBOL programs.
Stars: ✭ 34 (-12.82%)
Mutual labels:  runner
deno sticker
🦕 The data I used for submitting for printing deno_sticker.
Stars: ✭ 50 (+28.21%)
Mutual labels:  deno
denoliver
A simple, dependency free static file server for Deno with possibly the worst name ever.
Stars: ✭ 94 (+141.03%)
Mutual labels:  deno
media types
Deprecated. Use std/media_types instead.
Stars: ✭ 21 (-46.15%)
Mutual labels:  deno

land

Run Deno X modules without installation.

Installation

deno install -A -f -n land https://deno.land/x/[email protected]/cli.ts

Usage

# equals to `deno run https://deno.land/x/publish@latest/cli.ts `
land publish

How it works?

land will check the deno.land third-party module metadata at bootstrap, when the cli.ts or cli.js found then run it as sub-process, or use the mod.ts or mod.js. It also checks the import_map.json (or import-map.json) in the root directory and apply it automatically.

Versioning

By default, land will use the latest version of the module, you also can specify the version with semver:

land [email protected] start
land [email protected] start  # match latest patch version
land publish@1 start    # match latest minor version

Permissions

By default, land will ask you the permissions of the module is using, or you can pass the permissions manually:

land --allow-net --allow-read --allow-write publish

land supports PERMISSIONS(.txt) preset in the module root directory like:

--allow-net
--allow-read
--allow-write
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].