{"id":18599466,"url":"https://github.com/zapu/iced-coffee-script-v3","last_synced_at":"2025-10-10T00:35:01.378Z","repository":{"id":43016202,"uuid":"177342571","full_name":"zapu/iced-coffee-script-v3","owner":"zapu","description":"IcedCoffeeScript V3, a language that compiles into JavaScript, based on CoffeeScript V1","archived":false,"fork":false,"pushed_at":"2022-03-23T03:13:50.000Z","size":18313,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"iced_v3","last_synced_at":"2025-05-16T15:13:42.238Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CoffeeScript","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/zapu.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2019-03-23T21:37:34.000Z","updated_at":"2019-06-21T18:33:04.000Z","dependencies_parsed_at":"2022-08-27T12:41:47.819Z","dependency_job_id":null,"html_url":"https://github.com/zapu/iced-coffee-script-v3","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zapu/iced-coffee-script-v3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zapu%2Ficed-coffee-script-v3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zapu%2Ficed-coffee-script-v3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zapu%2Ficed-coffee-script-v3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zapu%2Ficed-coffee-script-v3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zapu","download_url":"https://codeload.github.com/zapu/iced-coffee-script-v3/tar.gz/refs/heads/iced_v3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zapu%2Ficed-coffee-script-v3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002359,"owners_count":26083357,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-07T01:39:05.772Z","updated_at":"2025-10-10T00:35:01.350Z","avatar_url":"https://github.com/zapu.png","language":"CoffeeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n                                      ICED\n\n                                       _____       __  __\n                                      / ____|     / _|/ _|\n     .- ----------- -.               | |     ___ | |_| |_ ___  ___\n    (  (ice cubes)    )              | |    / _ \\|  _|  _/ _ \\/ _ \\\n    |`-..________ ..-'|              | |___| (_) | | | ||  __/  __/\n    |                 |               \\_____\\___/|_| |_| \\___|\\___|\n    |                 ;--.\n    |                (__  \\            _____           _       _\n    |                 | )  )          / ____|         (_)     | |\n    |                 |/  /          | (___   ___ _ __ _ _ __ | |_\n    |                 (  /            \\___ \\ / __| '__| | '_ \\| __|\n    |                 |/              ____) | (__| |  | | |_) | |_\n    |                 |              |_____/ \\___|_|  |_| .__/ \\__|\n     `-.._________..-'                                  | |\n                                                        |_|\n\nCoffeeScript is a little language that compiles into JavaScript.\nIcedCoffeeScript is a superset of CoffeeScript that adds two new\nkeywords: `await` and `defer`.\n\nIcedCoffeeScript is based on CoffeeScript V1 - the one without Javascript ES6\nsupport. Based on top of last CoffeeScript V1, version 1.12.8, git commit id:\n`943579a23943ce62e8d2e3dbc868f22bac773f36`.\n\n## Iced v3 Alpha\n\nWe're current alpha-testing Iced v3, which emits ES6 with `yield`s and generators.\nRelative to Iced v2, this version stays much closer to the CoffeeScript main body of\ncode, and emits much simpler code. The downside is that the target must run ES6, or\nbe transpiled into ES5 with a further step not handled by this package.\n\n## How to Build\n\n```\n./bin/cake build\n```\n\n## Installation\n\nIf you have the node package manager, npm, installed:\n\n```shell\nnpm install -g iced-coffee-script-3\n```\n\nLeave off the `-g` if you don't wish to install globally. If you don't wish to use npm:\n\n```shell\ngit clone -b iced3 https://github.com/maxtaco/coffeescript.git\nsudo coffeescript/bin/cake install\n```\n\n## Getting Started\n\nRun REPL:\n\n```shell\niced3\n```\n\nExecute a script:\n\n```shell\niced3 /path/to/script.iced\n```\n\nCompile a script:\n\n```shell\niced3 -c /path/to/script.iced\n```\n\nFor documentation, usage, and examples, see: http://coffeescript.org/\n\nTo suggest a feature or report a bug: http://github.com/maxtaco/coffeescript/issues\n\nThe source repository: https://github.com/maxtaco/coffeescript.git\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzapu%2Ficed-coffee-script-v3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzapu%2Ficed-coffee-script-v3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzapu%2Ficed-coffee-script-v3/lists"}