Gathering detailed insights and metrics for mitt
Gathering detailed insights and metrics for mitt
Gathering detailed insights and metrics for mitt
Gathering detailed insights and metrics for mitt
🥊 Tiny 200 byte functional event emitter / pubsub.
npm install mitt
Typescript
Module System
Node Version
NPM Version
TypeScript (100%)
Total Downloads
945,442,191
Last Day
519,712
Last Week
9,864,795
Last Month
42,752,293
Last Year
406,975,754
MIT License
11,399 Stars
139 Commits
456 Forks
69 Watchers
8 Branches
32 Contributors
Updated on Jul 06, 2025
Minified
Minified + Gzipped
Latest Version
3.0.1
Package Id
mitt@3.0.1
Unpacked Size
25.82 kB
Size
6.00 kB
File Count
10
NPM Version
9.7.2
Node Version
18.12.1
Published on
Jul 04, 2023
Cumulative downloads
Total Downloads
Last Day
1.6%
519,712
Compared to previous day
Last Week
-8.1%
9,864,795
Compared to previous week
Last Month
2.1%
42,752,293
Compared to previous month
Last Year
83.8%
406,975,754
Compared to previous year
Tiny 200b functional event emitter / pubsub.
"*"
event type listens to all eventsthis
Mitt was made for the browser, but works in any JavaScript runtime. It has no dependencies and supports IE9+.
This project uses node and npm. Go check them out if you don't have them locally installed.
1$ npm install --save mitt
Then with a module bundler like rollup or webpack, use as you would anything else:
1// using ES6 modules 2import mitt from 'mitt' 3 4// using CommonJS modules 5var mitt = require('mitt')
The UMD build is also available on unpkg:
1<script src="https://unpkg.com/mitt/dist/mitt.umd.js"></script>
You can find the library on window.mitt
.
1import mitt from 'mitt' 2 3const emitter = mitt() 4 5// listen to an event 6emitter.on('foo', e => console.log('foo', e) ) 7 8// listen to all events 9emitter.on('*', (type, e) => console.log(type, e) ) 10 11// fire an event 12emitter.emit('foo', { a: 'b' }) 13 14// clearing all events 15emitter.all.clear() 16 17// working with handler references: 18function onFoo() {} 19emitter.on('foo', onFoo) // listen 20emitter.off('foo', onFoo) // unlisten
Set "strict": true
in your tsconfig.json to get improved type inference for mitt
instance methods.
1import mitt from 'mitt'; 2 3type Events = { 4 foo: string; 5 bar?: number; 6}; 7 8const emitter = mitt<Events>(); // inferred as Emitter<Events> 9 10emitter.on('foo', (e) => {}); // 'e' has inferred type 'string' 11 12emitter.emit('foo', 42); // Error: Argument of type 'number' is not assignable to parameter of type 'string'. (2345)
Alternatively, you can use the provided Emitter
type:
1import mitt, { Emitter } from 'mitt'; 2 3type Events = { 4 foo: string; 5 bar?: number; 6}; 7 8const emitter: Emitter<Events> = mitt<Events>();
Mitt: Tiny (~200b) functional event emitter / pubsub.
Returns Mitt
A Map of event names to registered handler functions.
Register an event handler for the given type.
type
(string | symbol) Type of event to listen for, or '*'
for all eventshandler
Function Function to call in response to given eventRemove an event handler for the given type.
If handler
is omitted, all handlers of the given type are removed.
type
(string | symbol) Type of event to unregister handler
from, or '*'
handler
Function? Handler function to removeInvoke all handlers for the given type.
If present, '*'
handlers are invoked after type-matched handlers.
Note: Manually firing '*' handlers is not supported.
type
(string | symbol) The event type to invokeevt
Any? Any value (object is recommended and powerful), passed to each handlerFirst off, thanks for taking the time to contribute! Now, take a moment to be sure your contributions make sense to everyone else.
Found a problem? Want a new feature? First of all see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.
Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.
git clone https://github.com/<your-username>/mitt
cd mitt
git checkout -b my-new-feature
npm install
git commit -am 'Add some feature'
git push origin my-new-feature
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
Found 8/26 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More