mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
deno: add Korean translation (#10932)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
parent
dbfb06385e
commit
3c400a11da
1 changed files with 24 additions and 0 deletions
24
pages.ko/common/deno.md
Normal file
24
pages.ko/common/deno.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# deno
|
||||
|
||||
> JavaScript 및 TypeScript를 위한 보안 런타임입니다.
|
||||
> 더 많은 정보: <https://deno.land>.
|
||||
|
||||
- JavaScript 또는 TypeScript 파일을 실행:
|
||||
|
||||
`deno run {{경로/대상/파일.ts}}`
|
||||
|
||||
- REPL(대화형 쉘)을 시작:
|
||||
|
||||
`deno`
|
||||
|
||||
- 네트워크 접근이 가능한 파일을 실행:
|
||||
|
||||
`deno run --allow-net {{경로/대상/파일.ts}}`
|
||||
|
||||
- URL을 통해 파일을 실행:
|
||||
|
||||
`deno run {{https://deno.land/std/examples/welcome.ts}}`
|
||||
|
||||
- URL을 통해 실행 가능항 스크립트 설치:
|
||||
|
||||
`deno install {{https://deno.land/std/examples/colors.ts}}`
|
Loading…
Add table
Reference in a new issue