Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기deno
스타2
포크0
업데이트2026년 4월 19일 10:18
Rules for using Deno
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
파일 탐색기
2 개 파일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"} |
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