Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bun-cmigemo

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bun-cmigemo

Bun bindings for cmigemo

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
0
Weekly downloads
 
Created
Source

bun-cmigemo

npm version npm downloads

Run cmigemo with Bun cc.

https://github.com/user-attachments/assets/98da72af-7831-453a-ba97-fed938707d00

What is this?

This package allows you to run cmigemo with Bun cc.

Bun has an experimental compiler called Bun cc, which enables you to run C code in Bun with low overhead. cmigemo is written in C, and if you want to use it in Bun, you need to compile it. However, by wrapping C code with Bun cc, you can run it in Bun without the need for explicit compilation! Amazing, right?

So, this package is essentially a wrapper around cmigemo, but you don't need to compile it!

There are also other implementations of migemo, such as jsmigemo and rustmigemo, which are written in JavaScript and Rust, respectively, allowing you to run them in Node or even in the browser!

So... WTH does this package exist? Well, it's just for fun! 😄

Usage

To install dependencies:

bun i bun-cmigemo
bun pm trust bun-cmigemo

Then, you can use it like this:

import { Migemo } from 'bun-cmigemo';

const dictPath = '/absolute/path/to/dict';
{
	using migemo = new Migemo(dictPath);

	migemo.query(query, s => console.log(s));
}

CLI

You can also use the CLI:

bun x bun-cmigemo -d path/to/dict 'query'
bun x bun-cmigemo --help

Example App

This repo includes an example web app that uses bun-cmigemo.

You can run it like this:

git clone https://github.com/ryoppippi/bun-cmigemo
cd bun-cmigemo
bun i
bun app
open http://localhost:3000

https://github.com/user-attachments/assets/8d728cc8-4a15-402c-87e7-950ca083725e

Limitations

This is obvious but it runs on only Bun.

License

MIT

FAQs

Package last updated on 08 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc