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 🙏

© 2024 – Pkg Stats / Ryan Hefner

centimaitre

v1.0.4

Published

Minimalist task runner

Downloads

24

Readme

Centimaitre

npm version build status coverage status license status david

Centimaitre is a small task runner with a dependencies system which works a bit like gulp@3.

How do I use it?

First to install:

npm i -D centimaitre

Centimaitre doesn't work when installed globally, I recommend installing it locally, and using npx (installed by default with npm):

npm i -D centimaitre
npx cm [cmOptions] <...tasks-to-run> [taskOptions]

CLI

The CLI is used as such: npx cm [cmOptions] <...tasks-to-run> [taskOptions]

Both cmOptions and taskOptions are parsed with yargs. You should take note of its syntax. For example, if you want to set a given option myOption to false, you should pass --no-myOption on the CLI.

cmOptions

cmFile

By default, centimaitre will use the cmfile.js found in the directory from which it is called. If you want to override that, you can pass --cmfile=relative/path/to/custom/centimaitre/config/file.

quiet & verbose

Pass --quiet if you want no logs from centimaitre besides errors, or --verbose if you want extra logs. If you try being funny and pass both, you'll just get the normal logs.

API

setDefaultOptions(options: Object): void

This function assigns given options as default task options.

Params:

  • @param {Object} options

task(taskName: String[, dependencies: Array<string>][, callback:Function]): void

Tasks can be defined in any order, their dependencies are resolved at runtime.

This function ensures that the task hasn't been defined multiple times and stores the task into the tasks object. Both dependencies and callback are optional, but at least one of them must be provided, so it can be:

  • taskName, callback
  • taskName, dependencies
  • taskName, dependencies, callback

The task callback is called with the taskOptions object as argument.

Params:

  • @param {string} taskName
  • @param {Array} [dependencies]
  • @param {function(options: Object):Promise|{pipe: function}|void} [callback] when given, is a function that is synchronous, or that returns a Promise, or that returns a Stream. The task is considered finished when the returned Promise is resolved, when the returned Stream has finished or when the synchronous execution has ended.

Example cmfile.js

Here is an example of a basic cmfile.js

const cm = require('centimaitre')

cm.setDefaultOptions({
  sourceMaps: true
})

cm.task('clean', () => {
  console.log('cleaning')
})

cm.task('task1', ['clean'], () => {
  return new Promise(resolve => {
    setTimeout(() => resolve(console.log('task1')), 50)
  })
})

cm.task('task2', ['clean'], () => {
  return new Promise(resolve => {
    setTimeout(() => resolve(console.log('task2')), 100)
  })
})

cm.task('build', ['task1', 'task2'], (options) => {
  if (options.sourceMaps) console.log('build with sourceMaps')
  else console.log('build without sourceMaps')
})

And then, you can execute the build task with the relevant options (parsed with yargs):

npx cm build --no-sourceMaps

This will execute clean, then task1 & task2, then finally build with options.sourceMaps set to false.

You can find detailed examples of how to use centimaitre with rollup, babel, and node-sass in the examples directory of this repo.

Why another task runner?

I used to use gulp, and found its dependencies system very convenient. BUT when node@10 was released, two things happened:

  1. gulp@3 doesn't work on node@10 anymore, it seems the preferred workaround is to switch to yarn, which I most definitely don't want to do.
  2. gulp@4 lost this dependencies system I thought was convenient (I had to rewrite like 1000 lines of gulpfile) AND gulp@4 doesn't work in gitlab-runner with node@10 (https://github.com/nodejs/node/issues/20498).

With that in mind, I decided to find another task runner, but all of them are overkill. I only wanted something to define tasks, resolve dependencies, and a CLI, so I wrote my own, with blackjack, and hookers. Feel free to use it if you want.

Why 'Centimaitre'

TL;DR: I'm French, I always do bad puns and this is one.

A 'maître' in French is a 'master', 'ruler', 'teacher'. Since a task runner kinda rules the tasks, it almost makes sense to call it that way. I said almost.

A 'centimetre' is 1/100 of a meter, it is small.

This project is all about making a small task runner: 'centimaître'.

<bad-pun> Oh and with this name, you can switch to the maitric system. </bad-pun>