{"id":13688239,"url":"https://github.com/purescript-contrib/purescript-ace","last_synced_at":"2025-12-16T02:08:58.727Z","repository":{"id":25917342,"uuid":"29358307","full_name":"purescript-contrib/purescript-ace","owner":"purescript-contrib","description":"Purescript bindings for the Ace editor","archived":false,"fork":false,"pushed_at":"2023-01-09T13:52:09.000Z","size":288,"stargazers_count":19,"open_issues_count":8,"forks_count":12,"subscribers_count":14,"default_branch":"main","last_synced_at":"2025-02-10T20:14:35.307Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PureScript","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/purescript-contrib.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-01-16T17:00:44.000Z","updated_at":"2024-01-21T15:06:33.000Z","dependencies_parsed_at":"2023-01-14T03:40:57.725Z","dependency_job_id":null,"html_url":"https://github.com/purescript-contrib/purescript-ace","commit_stats":null,"previous_names":["slamdata/purescript-ace"],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/purescript-contrib%2Fpurescript-ace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/purescript-contrib%2Fpurescript-ace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/purescript-contrib%2Fpurescript-ace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/purescript-contrib%2Fpurescript-ace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/purescript-contrib","download_url":"https://codeload.github.com/purescript-contrib/purescript-ace/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242635336,"owners_count":20161437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-08-02T15:01:09.338Z","updated_at":"2025-12-16T02:08:53.663Z","avatar_url":"https://github.com/purescript-contrib.png","language":"PureScript","funding_links":[],"categories":["PureScript"],"sub_categories":[],"readme":"# Ace\n\n[![CI](https://github.com/purescript-contrib/purescript-ace/workflows/CI/badge.svg?branch=main)](https://github.com/purescript-contrib/purescript-ace/actions?query=workflow%3ACI+branch%3Amain)\n[![Release](http://img.shields.io/github/release/purescript-contrib/purescript-ace.svg)](https://github.com/purescript-contrib/purescript-ace/releases)\n[![Pursuit](http://pursuit.purescript.org/packages/purescript-ace/badge)](http://pursuit.purescript.org/packages/purescript-ace)\n[![Maintainer: garyb](https://img.shields.io/badge/maintainer-garyb-teal.svg)](http://github.com/garyb)\n\nPureScript bindings for the [Ace code editor](http://ace.c9.io).\n\n## Installation\n\nInstall `ace` with [Spago](https://github.com/purescript/spago):\n\n```sh\nspago install ace\n```\n\nYou may either include a CDN link in your project's `index.html`, or install the `ace-builds` npm dependency and let a bundler package it in your app. See Ace's [embedding guide](https://ace.c9.io/#nav=embedding) for more information.\n\n### Here's a CDN example:\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n\n\u003chead\u003e\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003ctitle\u003eAce Demo\u003c/title\u003e\n  \u003cscript type=\"text/javascript\" src=\"https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.min.js\" charset=\"utf-8\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n  \u003cscript src=\"./index.js\"\u003e\u003c/script\u003e\n\u003c/body\u003e\n\n\u003c/html\u003e\n```\n\n### To install via NPM instead:\n```\nnpm install ace-builds\n```\n\nNote that you'll probably need the `src-noconflict` path when bundling with Common JS modules (PureScript's current output, until we switch to ES Modules in ~`0.15.0`). For example:\n```html\n\u003cscript src=\"../node_modules/ace-builds/src-noconflict/ace.js\"\u003e\u003c/script\u003e\n```\n\n## Quick start\n\nThe quick start hasn't been written yet (contributions are welcome!). The quick start covers a common, minimal use case for the library, whereas longer examples and tutorials are kept in the [docs directory](./docs).\n\n## Documentation\n\n`ace` documentation is stored in a few places:\n\n1. Module documentation is [published on Pursuit](https://pursuit.purescript.org/packages/purescript-ace).\n2. Written documentation is kept in [the docs directory](./docs).\n3. The [examples directory](./examples) demonstrates how to embed the Ace editor and configure it via the PureScript API.\n\nIf you get stuck, there are several ways to get help:\n\n- [Open an issue](https://github.com/purescript-contrib/purescript-ace/issues) if you have encountered a bug or problem.\n- Ask general questions on the [PureScript Discourse](https://discourse.purescript.org) forum or the [PureScript Discord](https://purescript.org/chat) chat.\n\n## Contributing\n\nYou can contribute to `ace` in several ways:\n\n1. If you encounter a problem or have a question, please [open an issue](https://github.com/purescript-contrib/purescript-ace/issues). We'll do our best to work with you to resolve or answer it.\n\n2. If you would like to contribute code, tests, or documentation, please [read the contributor guide](./CONTRIBUTING.md). It's a short, helpful introduction to contributing to this library, including development instructions.\n\n3. If you have written a library, tutorial, guide, or other resource based on this package, please share it on the [PureScript Discourse](https://discourse.purescript.org)! Writing libraries and learning resources are a great way to help this library succeed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpurescript-contrib%2Fpurescript-ace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpurescript-contrib%2Fpurescript-ace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpurescript-contrib%2Fpurescript-ace/lists"}