laundry v1.8.25
Laundry
A command-line tool written with node.js for "laundering" data by moving it from one API to another in ways that the API authors didn't intend. Laundry can do things like:
- make an RSS feed of all mentions of a hashtag on twitter
- write all of your Instagram likes to a MySQL database
- send anything posted to a Slack channel out over a websocket
- turn your YouTube and Soundcloud subscriptions into podcasts
Washers
Laundry is made up of washers, each with an input or an output, or both. Any input can go to any output. The current washers are:
Input | Output |
---|---|
local files | JSON files |
gMail search | MySQL database |
Instagram timeline, user, hashtag, likes | Web socket (example) |
Pinterest boards | Pinterest boards |
RSS | RSS (with enclosures) |
Slack channel | Slack channel |
Soundcloud timeline, artist | |
Tumblr blog, likes, timeline, hashtag | |
Twitter timeline, hashtag, list, user, favorites | |
Vimeo feed, user, tag, group, channel, category | |
Vogue fashion shows | |
YouTube subscriptions, channel |
There are many more ideas for new washers and additions to existing washers, listed among the issues. Development of new washers is a great way to contribute to the project. There is more documentation on that if you're interested.
Jobs
The interface to Laundry is via the command-line, with subcommands to create, edit, run, and destroy jobs. A job specifies which input and output washers to use, any options required by the washers, and when to run the job. When creating a job, the CLI will ask whatever questions are needed to configure the washers, and the configuration of all jobs is stored in a file.
The commands are shown in laundry --help
.
Commands:
create [job] configure a new job
edit [job] edit an existing job
run [job] run an existing job (or "all" to run all jobs)
destroy [job] destroy an existing job
list list configured jobs
tick run on an interval or cron to trigger scheduled jobs
Jobs can run on an interval (every 20 minutes, every hour), at a specific time (every day at noon), after another job completes (if you want to chain them together), or manually.
Storage
Input washers often can download media files as well as data, and output washers often create files. Those need to go somewhere. Laundry has a modular storage architecture, which allows for two types of storage at the moment: local to the machine it's running on, or on Amazon S3.
Storage settings are configured via command-line arguments or environment variables, as shown in the laundry --help
.
Options:
-h, --help output usage information
-V, --version output the version number
--local [path] path to use for local file storage, default is LAUNDRY_LOCAL
--s3key [key] S3 access key ID, default is LAUNDRY_S3_KEY
--s3secret [secret] S3 access key secret, default is LAUNDRY_S3_SECRET
--s3bucket [bucket] S3 bucket, default is LAUNDRY_S3_BUCKET
--baseUrl [url] the base URL that maps to the local folder or S3 bucket, default is LAUNDRY_BASEURL
--mediaAge [days] the number of days to keep downloaded media around, default is 30
--proxy [proxy] proxy to use for API requests, use "http://localhost:8888" when debugging with Charles
-v, --verbose verbose output
Logs and configuration data are stored using the same storage method as washers. Development of new storage methods is a great way to contribute to the project. There is more documentation on that if you're interested.
Installation
Installation from npm is easy with npm install -g laundry
.
You'll want to configure a storage solution as well. If you're using local storage, you'll pass the location of the output folder on the --local
argument or LAUNDRY_LOCAL
environment variable. You'll probably want to make that location accessible via a web server, the URL to which is passed on the --baseUrl
argument or LAUNDRY_BASEURL
environment variable.
If using S3 storage, it's the same idea, but using --s3key
, --s3secret
, and --s3bucket
arguments.
You'll then need to run laundry tick
every so often to trigger jobs.
On Mac/Linux, you'll probably want to use a wrapper script which you run via cron.
On Windows, you can use a batch file that runs on an interval via the task scheduler. Try importing this task and modifying as needed.
Running on Heroku
You can magically deploy to Heroku using the deploy button below. Since Heroku doesn't have a persistent filesystem, you'll want to store things on S3. The install process will ask you for a sensible app name and S3 settings.
Then you'll need to configure jobs. Install the Heroku toolbelt, then get a shell with heroku run bash --app [app-name]
. From there you can run the laundry commands such as node index.js list
to list jobs, node index.js create foo
to create a job called "foo", etc.
Laundry runs in daemon mode on Heroku, which means its dyno needs to be consistently running, which isn't possible on the free plan. The "hobby" plan should work fine, though.
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago