{"id":46434816,"url":"https://github.com/funmaker/bqneditor","last_synced_at":"2026-03-05T20:01:14.464Z","repository":{"id":209760672,"uuid":"724885655","full_name":"funmaker/bqneditor","owner":"funmaker","description":"BQN Editor in React","archived":false,"fork":false,"pushed_at":"2025-11-28T14:44:34.000Z","size":631,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-30T20:54:49.645Z","etag":null,"topics":["bqn","react","styled-components","webpack"],"latest_commit_sha":null,"homepage":"https://bqn.funmaker.moe/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/funmaker.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-29T01:44:34.000Z","updated_at":"2025-11-28T14:44:39.000Z","dependencies_parsed_at":"2023-12-07T17:26:31.244Z","dependency_job_id":"d3a703cf-c959-4e32-8161-8b81b694cddb","html_url":"https://github.com/funmaker/bqneditor","commit_stats":null,"previous_names":["funmaker/bqneditor"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/funmaker/bqneditor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funmaker%2Fbqneditor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funmaker%2Fbqneditor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funmaker%2Fbqneditor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funmaker%2Fbqneditor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/funmaker","download_url":"https://codeload.github.com/funmaker/bqneditor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funmaker%2Fbqneditor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30147986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T16:58:46.102Z","status":"ssl_error","status_checked_at":"2026-03-05T16:58:45.706Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bqn","react","styled-components","webpack"],"created_at":"2026-03-05T20:01:12.822Z","updated_at":"2026-03-05T20:01:14.459Z","avatar_url":"https://github.com/funmaker.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BQN Editor\n\n\u003ca href=\"https://github.com/funmaker/bqneditor\"\u003e\u003cimg src=\"https://github.com/funmaker/bqneditor/actions/workflows/release_build.yml/badge.svg\" height=\"23\"\u003e\u003c/a\u003e\n\n[Website](https://bqn.funmaker.moe)\n\n[Changelog](./CHANGELOG.md)\n\n\u003c!-- HELP START --\u003e\n\nThis is an unofficial online editor for the [BQN](https://mlochbaum.github.io/BQN/) programming language\nmade by [Fun Maker](https://github.com/funmaker/). You can find the source code on [GitHub](https://github.com/funmaker/bqneditor).\nCurrently it is using [bqn.js](https://github.com/mlochbaum/BQN/blob/master/docs/bqn.js) as the interpreter.\n\n# Multimedia output\n\n`•Show 𝕩` system function automatically detects image and audio output depending on the shape (`≢𝕩`). You can turn this\nfeature off in settings.\n\nImages have to be at least 10x10. They are represented as arrays of 0-255 values.\nAllowed shapes are: `h‿w` (grayscale) `h‿w‿3` (RGB) `h‿w‿4` (RGBA) where `h` is height and `w` is width.\n\nExample grayscale gradient: `+´¨ ↕ 127‿127`\n\nAudio is represented as an array of at least 64 PCM samples from -1 to 1. It can be a list for mono audio, or an array\nof shape `s‿2` or `2‿s` for stereo audio. You can get and change sample rate using `•SampleRate 𝕩` and\n`•SetSampleRate 𝕩` respectively.\n\nExample sine wave: `•math.Sin 2 × π × 60 × ↕⊸÷ •SampleRate @`\n\nYou can find more examples in the editor's menu.\n\n# System-provided values\n\nAll bqn.js system values are avaliable. [BQN Specification](https://mlochbaum.github.io/BQN/spec/system.html)\nincludes standard system values. Note, this list includes many system values that are not avaliable in bqn.js and\ntherefore in BQN Editor. You can list all supported system values using: `•listSys`\nAdditionally, BQN Editor adds following system values:\n\n- `•GetLine 𝕩` Reads next line from program input. `𝕩` is ignored.\n- `•SampleRate 𝕩` Gets current sample rate. `𝕩` is ignored.\n- `•SetSampleRate 𝕩` Sets sample rate. `𝕩` must be an integer between 1 and 4'294'967'295 inclusive.\n\nYou can list all the avaliable system values using: `•listSys`\n\n\u003c!-- HELP END --\u003e\n\n## Source code usage\n\n### Run development\n\n```bash\nnpm run start\n```\n\n### Build production\n\n```bash\nnpm run build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunmaker%2Fbqneditor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunmaker%2Fbqneditor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunmaker%2Fbqneditor/lists"}