npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

fabottimer

v1.0.7

Published

일정 시간마다 특정 함수를 실행시켜주는 크론잡

Readme

#fabottimer

사용법

루트폴더에 holiday.url 파일을 생성합니다.(휴일을 받아올 수 있는 인터넷 주소 GET 방식)

예시

/*global require, module, console*/
/*jslint this:true, for:true*/

(function () {

    'use strict';

    var Fabottimer = require('fabottimer');

    var testjob = function () {
        console.log('1');
    };

    /**
     * node-cron scheduler
     * (second(0-59), minute(0-59), hour(0-23), day of month(1-31), month(1-12), day of week(0-7 0:sun, 6:sat))
     */
    var fabottimer = new Fabottimer(); //new 항목이 추가되었음
    fabottimer.register({ //등록
        pass_holiday: false, //휴일은 건너 뛸 경우 true, 휴일에도 진행할 경우 false 입력
        func: testjob, //실행할 함수명
        time: '*/3 * * * * *' //crobjob 시간 포맷
    });
    fabottimer.start(); //실행
}());

크론잡 문법

fabottimer 에서 참조 한(node-cron)의 시간 설정 규칙입니다.

허용 되는 필드는 다음과 같습니다.

 # ┌────────────── second (optional)
 # │ ┌──────────── minute
 # │ │ ┌────────── hour
 # │ │ │ ┌──────── day of month
 # │ │ │ │ ┌────── month
 # │ │ │ │ │ ┌──── day of week
 # │ │ │ │ │ │
 # │ │ │ │ │ │
 # * * * * * *

필드 및 값

| 필드명 | 값 | |--------------|---------------------| | second | 0-59 | | minute | 0-59 | | hour | 0-23 | | day of month | 1-31 | | month | 1-12 (or names) | | day of week | 0-7 (or names, 0 or 7 are sunday) |