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 🙏

© 2026 – Pkg Stats / Ryan Hefner

mimosa-testem-simple

v1.2.0

Published

A simple testem integration Mimosa module

Readme

mimosa-testem-simple

Testem integration module for Mimosa. This module will run your existing testem suite.

For more information on testem, https://github.com/airportyh/testem

For more information on Mimosa, http://mimosa.io

Overview

This module will involve itself in Mimosa's build and watch commands and execute your existing testem suite on startup and when JavaScript assets are saved.

For more information regarding Mimosa, see http://mimosa.io

Usage

Add testem-simple to your mimosa-config's modules array. That's all!

Functionality

The testem-simple module will execute testem ci on startup and when JavaScript assets are saved.

If the current Mimosa run is a build, testem-simple will provide a simple one line status of the tests and output the build results as testem would have provided them.

If the current Mimosa run is a watch, testem-simple will provide a simple one line status, and if there are errors, output the results of the failed tests only.

Build out your testing config?

This module assumes an existing testem suite with all the necessary files in place at the root of the Mimosa project. This module will not provide any setup or configuration for testem. testem-require, testem-qunit, and ember-test are those modules. They will build all of your configuration for you and then utilize mimosa-testem-simple to execute the tests. Just write tests!

Default Config

testemSimple: {
  configFile: "testem.json",
  port: null,
  watch: [],
  exclude: [],
}
  • configFile: the path from the root of the Mimosa application to the testem configuration file. This can also be an array of paths if you have multiple testem harnesses set up.
  • port: port to run the ci server on. If you re running ci and non-ci at the same time, this setting allows you to avoid running on same port
  • watch : an array of strings, folders and files whose contents trigger re-running all tests when they are changed. Can be relative to the base of the project or can be absolute
  • exclude: An array of regexs or strings that match files to exclude from re-running the tests. Can be a mix of regex and strings. Strings should be a path relative to the base of the project (location of mimosa-config) or absolute. ex: [/\.txt$/,"src/README.md"]