在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用deno
星标0
分支0
更新时间2026年4月2日 00:42
Rules for using Deno
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Rules for using Deno
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | deno |
| description | Rules for using Deno |
| metadata | {"url":"https://gist.github.com/kuboon/b0d7c4384a9baf3c650be6d6fdd5665a","updated_on":"2026-04-01T00:00:00.000Z"} |
add root deno.json file:
{
"tasks": {
"lint": "deno fmt && deno lint && deno check",
"check": "deno lint && deno check && deno fmt --check"
}
}
run deno task lint locally on every commit.
name: CI
on:
push:
branches: ["main"]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: denoland/setup-deno@v2
- run: deno task check
import { serve } from "https://deno.land/std@0.177.0/http/server.ts";
run
deno add jsr:@std/httpdeno add npm:tailwindcss to add the import map, thenimport { serve } from "@std/http/server.ts";
import { serve } from "tailwindcss";
deno run --allow-net server.ts
Write a deno.json file in the root of your project:
{
"permissions": {
"default": {
"net": ["example.com", "api.example.com"],
"read": ["./data/*"],
"env": {
"ignore": true,
"allow": ["API_KEY", "DATABASE_URL"]
}
},
"build": {
"net": ["deno.land"],
"read": ["./src/*"],
"write": ["./dist/*"]
}
}
}
Then run your script with the -P flags:
deno run -P server.ts
deno run -P=build build.ts