# Deno Cron 발표

> Clean Markdown view of GeekNews topic #12125. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=12125](https://news.hada.io/topic?id=12125)
- GeekNews Markdown: [https://news.hada.io/topic/12125.md](https://news.hada.io/topic/12125.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2023-12-02T10:02:02+09:00
- Updated: 2023-12-02T10:02:02+09:00
- Original source: [deno.com](https://deno.com/blog/cron)
- Points: 10
- Comments: 0

## Topic Body

- 예약된 작업을 쉽게 생성 가능   
```  
Deno.cron("샘플 크론 잡", "*/10 * * * *", () => {  
  console.log("10분 마다 실행");  
});  
```  
- UNIX/Linux 크론과 달리 Deno Cron 실행은 겹치지 않음   
  - 10분마다 실행하게 예약했지만, 작업 완료에 30분 걸리는 경우 작업 완료 시점까지 예약된 실행을 건너뜀   
- 자바스크립트 친화적인 API를 추가할 것(JSON 형태로 실행 정보 구성)  
- Deno.Deploy 에서는 자동으로 인식되고 관리되므로 신경쓸 필요 없음

## Comments



_No public comments on this page._
