{"id":18774429,"url":"https://github.com/thinca/coffee-script-on-jscript","last_synced_at":"2025-04-13T09:21:36.677Z","repository":{"id":1571273,"uuid":"2007694","full_name":"thinca/coffee-script-on-jscript","owner":"thinca","description":"CoffeeScript on JScript.","archived":false,"fork":false,"pushed_at":"2012-05-17T05:34:40.000Z","size":282,"stargazers_count":7,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-27T00:54:56.617Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thinca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-07-06T17:03:32.000Z","updated_at":"2019-08-13T14:47:25.000Z","dependencies_parsed_at":"2022-08-28T13:10:36.126Z","dependency_job_id":null,"html_url":"https://github.com/thinca/coffee-script-on-jscript","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinca%2Fcoffee-script-on-jscript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinca%2Fcoffee-script-on-jscript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinca%2Fcoffee-script-on-jscript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thinca%2Fcoffee-script-on-jscript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thinca","download_url":"https://codeload.github.com/thinca/coffee-script-on-jscript/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248689377,"owners_count":21145923,"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-11-07T19:38:16.534Z","updated_at":"2025-04-13T09:21:36.655Z","avatar_url":"https://github.com/thinca.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CoffeeScript on JScript\r\n\r\n## What is this?\r\n\r\nThis is a wrapper of CoffeeScript compiler works on JScript.\r\nNo need cygwin!\r\n\r\n## What is CoffeeScript?\r\n\r\nSee http://jashkenas.github.com/coffee-script/ .\r\n\r\n## Usage\r\n\r\n    Usage: coffee [options] path/to/script.coffee\r\n\r\n      -b, --bare         compile without the top-level function wrapper\r\n      -c, --compile      compile to JavaScript and save as .js files\r\n          --encoding     character encoding used by source files\r\n      -e, --eval         compile a string from the command line\r\n      -h, --help         display this help message\r\n      -j, --join         concatenate the scripts before compiling\r\n      -n, --nodes        print out the parse tree that the parser produces\r\n      -o, --output       set the directory for compiled JavaScript\r\n      -p, --print        print the compiled JavaScript to stdout\r\n      -s, --stdio        listen for and compile scripts over stdio\r\n      -t, --tokens       print the tokens that the lexer produces\r\n      -v, --version      display CoffeeScript version\r\n      -w, --watch        watch scripts for changes, and recompile\r\n\r\n## Note\r\n\r\n- The file \"coffee-script.js\" included in this repository is a part of CoffeeScript.\r\n  You can get the latest version of this from the following.\r\n\r\n  http://jashkenas.github.com/coffee-script/extras/coffee-script.js\r\n\r\n- This script works on JScript. So, some functions and objects that can be used by node.js cannot be used.\r\n\r\n- Some problems are known in the direct running(without --compile).\r\n  - Can not know the point that the error occurred.\r\n  - Can not treat the arguments of command line.\r\n\r\n- StdIn and StdOut of JScript can not treat binary data.\r\n  - These are treat data as system default encoding.\r\n  - If the output breaks, please try --encoding option.\r\n  - Processing about file is performed with binary.\r\n  - If how you treat binary data is known, please let me know.\r\n\r\n## Information\r\n\r\n    Version:    1.5.6\r\n    Author:     thinca \u003cthinca@gmail.com\u003e\r\n    Repository: https://github.com/thinca/coffee-script-on-jscript\r\n    License:    zlib License\r\n\r\n\r\n## ChangeLog\r\n\r\n1.5.6  2012-05-17\r\n\r\n- Updated coffee-script.js to 1.3.3.\r\n\r\n1.5.5  2012-04-25\r\n\r\n- Updated coffee-script.js to 1.3.1.\r\n\r\n1.5.4  2011-12-20\r\n\r\n- Updated coffee-script.js to 1.2.0.\r\n\r\n1.5.3  2011-12-10\r\n\r\n- Added --encoding option.\r\n\r\n1.5.2  2011-12-01\r\n\r\n- Improved for multibyte character.\r\n- Updated coffee-script.js to 1.1.3.\r\n\r\n1.5.1  2011-07-13\r\n\r\n- Fixed the watching of directory.\r\n\r\n1.5  2011-07-13\r\n\r\n- Added --join option.\r\n- Added --watch option.\r\n- Fixed the error with an empty file.\r\n\r\n1.4  2011-07-08\r\n\r\n- Improved the handling of error.\r\n- Fixed some behaviors.\r\n\r\n1.3  2011-07-08\r\n\r\n- Added --tokens option.\r\n- Added --version option.\r\n\r\n1.2  2011-07-07\r\n\r\n- Added --output option.\r\n- Fixed bug that can not compile.\r\n\r\n1.1  2011-07-07\r\n\r\n- Directory support.\r\n\r\n1.0  2011-07-07\r\n\r\n- Initial Version.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthinca%2Fcoffee-script-on-jscript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthinca%2Fcoffee-script-on-jscript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthinca%2Fcoffee-script-on-jscript/lists"}