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

mimium-web

v3.1.2

Published

mimium wasm binding package.

Readme

mimium

main: Test(main) dev: Test(dev)

A programming language as an infrastructure for sound and music.

https://mimium.org


mimium(MInimal-Musical-medIUM) is a programming language for sound and music.

mimium is made to be an infrastructure for distributing music in a form of a source code, not only a tool for musicians and programmers.

Its semantics are inspired from several modern programming languages for sound such as Faust, Kronos and Extempore.

A minimal example below generates a sinewave of 440Hz.

// minimal.mmm
let twopi = 3.141595*2.0
fn dsp(){
  sin(now * 440.0 * twopi / samplerate)
}

Unique Features

Functional Approach

A special keyword self can be used in function, which is a last return value of the function. This enables an easy and clean expression of feedback connection of signal chain as a function pipe.

fn lpf(input,fb){    
     (1.0-fb)*input + fb*self
}

Also, the language design is based on the call by value lambda calculus with multi-stage computation and the higher-order functions are supported to express generative signal graph like replicatiing multiple oscillators.

//10 Sequentially connected oscillators
#stage(macro)
fn cascade(n,gen){
    if (n>0.0){
        let multiplier = 1.0-(1.0/(n*3)) |> lift_f
        `|rate| rate + ($gen)(rate/3)* 0.5 * rate* $multiplier  
                |> cascade!(n - 1.0 ,gen) 
    }else{
        `|rate| ($gen)(rate)
    }
}
#stage(main)
let osc = ...
fn dsp(){
    let out =  50 |> cascade!(10,`osc) 
    (out,out)
}

mimium is a statically typed language but the most of type annotations can be omitted by the type inference system. If you are interested in the theoritical background of mimium, see the paper about mimium.

Live Coding

mimium can describe digital signal processing algorithm from very low-level, like Faust. Moreover, mimium can update source code without audio interruption, which enables full-scratch dsp livecoding performance.

Extensibility

mimium's VM design is inspired by Lua, that can be easily embedded on Rust application through the plugin system. External functions(closures) defined in Rust can be easily called from mimium.

Installation

The easiest way to start mimium is using Visual Studio Code Extension. The extention will automatically download CLI tool mimium-cli and language server (support for syntactic highlight and error reporting) when installed.

You can run .mmm file from the command palette.

Also you can download the latest CLI tool mimium-cli from GitHub Release through shell script.

Development

See Development section.

Contributing

There's no concrete way for contributing to the mimium project for now but any type of contribution (bugfix, code refactoring, documentation, showing the usecases, etc).

(However, because the mimium is still early stage of the development and there's much things to do, the proposal or request for new feature without Pull Request may not be accepted.)

Take a look at Code of Conduct before you make contribution.

License

©️ the mimium development community.

The source code is licensed under the Mozilla Puclic License 2.0 (MPL2.0).

Original Author

Tomoya Matsuura/松浦知也 https://matsuuratomoya.com/en

Acknowledgements

This project is supported grants and scholarships as follows.

  • 2019 Exploratory IT Human Resources Project (The MITOU Program) by IPA: INFORMATION-TECHNOLOGY PROMOTION AGENCY, Japan.
  • Kakehashi Foundation (2022)
  • JSPS Kakenhi 23K12059 "Civil Engineering of Music, as a Practice and Critics between Music and Engineering"(2023-2025)

Contributers

This list contains the contributers from v1 development, documentation and financial sponsors(via github sponsor).

Source Code Contributions

Other forms of Contributions

Known Bugs

See GitHub Issues with "bug" tag.

Roadmap