meteor-synced-cron

(★ 494)

A simple cron system for Meteor. It supports syncronizing jobs between multiple processes.

File Explorer

  • .gitignore
  • .versions
  • LICENSE
  • package.js
  • README.md
  • synced-cron-server.js
  • synced-cron-tests.js
  • versions.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

logger

View Details ▼

Add messages to syslog.

logger {{message}}

Log a message to syslog:

logger {{message}}

Log a message to syslog:

echo {{log_entry}} | logger

Take input from `stdin` and log to syslog:

🔍

mongo

View Details ▼

The legacy MongoDB shell. See `mongosh` for the new shell.
Note: All connection options can be replaced with one string: `mongodb://user@host:port/db_name?authSource=authdb_name`.

mongo

Connect to a local database on the default port (`mongodb://localhost:27017`):

mongo --host {{host}} --port {{port}} {{db_name}}

Connect to a database:

mongo --host {{host}} --port {{port}} --username {{username}} --authenticationDatabase {{authdb_name}} {{db_name}}

Authenticate using the specified username on the specified database (you will be prompted for a password):

🔍

tag

View Details ▼

Edit tags on Mac OS X files (10.9 Mavericks and above).

tag {{[-a|--add]}} {{tag_name1,tag_name2,...}} {{path/to/file}}

Add tags to a file:

tag {{[-r|--remove]}} {{tag_name}} {{path/to/file}}

Remove a tag:

tag {{[-r|--remove]}} \* {{path/to/file}}

Remove all tags from a file:

// repository documentation