{"id":15021623,"url":"https://github.com/shaimesisterano/blindjs","last_synced_at":"2025-10-16T08:19:10.880Z","repository":{"id":9274798,"uuid":"11105161","full_name":"ShaiMesisterano/BlindJS","owner":"ShaiMesisterano","description":"BlindJS is a Javascript library that allows blind typing of pre-defined code. So stop worrying about writing valid code and start typing fast as hell!","archived":false,"fork":false,"pushed_at":"2023-02-05T23:24:07.000Z","size":15707,"stargazers_count":16,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-02T11:13:22.934Z","etag":null,"topics":["brackets-extension","lecture","presentation","vscode-extension"],"latest_commit_sha":null,"homepage":"http://www.mcterano.com/blindjs","language":"JavaScript","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/ShaiMesisterano.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-01T19:49:00.000Z","updated_at":"2023-02-09T09:04:44.000Z","dependencies_parsed_at":"2023-02-19T02:30:33.452Z","dependency_job_id":null,"html_url":"https://github.com/ShaiMesisterano/BlindJS","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ShaiMesisterano/BlindJS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShaiMesisterano%2FBlindJS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShaiMesisterano%2FBlindJS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShaiMesisterano%2FBlindJS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShaiMesisterano%2FBlindJS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShaiMesisterano","download_url":"https://codeload.github.com/ShaiMesisterano/BlindJS/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShaiMesisterano%2FBlindJS/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267278631,"owners_count":24063252,"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-07-26T02:00:08.937Z","response_time":62,"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":["brackets-extension","lecture","presentation","vscode-extension"],"created_at":"2024-09-24T19:56:48.449Z","updated_at":"2025-10-16T08:19:05.831Z","avatar_url":"https://github.com/ShaiMesisterano.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"logo.png\" alt=\"BlindJS Logo\" /\u003e\n\u003ch2 style=\"text-transform: uppercase\"\u003eThe no code mistakes tool for presenters\u003c/h2\u003e\n\u003cp\u003eBlindJS is an extremely useful tool for \u003cu\u003electures, lessons and presentations\u003c/u\u003e.\u003cbr/\u003e\n        It allows you to write code samples quickly and without any chance for mistakes.\u003cbr/\u003e\n        BlindJS is a Javascript library that replaces \u003cu\u003econtent\u003c/u\u003e with \u003cu\u003epre-defined code\u003c/u\u003e in your code\n        editor or web page.\u003c/p\u003e\n        \u003ch2\u003eHow To Use BlindJS In VSCode?\u003c/h2\u003e\n        Watch a 1:30 video: \u003ca href=\"https://www.youtube.com/watch?v=BkTxLGcwiu4\"\u003ehttps://www.youtube.com/watch?v=zoC78I4eF4o\u003c/a\u003e\n        \u003ch4\u003eCommands\u003c/h4\u003e\n        \u003cp\u003eShow the code - right click and \"Open With BlindJS\"\u003c/p\u003e\n        \u003cp\u003eGo back to regular editing - right click and \"Terminate BlindJS\"\u003c/p\u003e\n        \u003ch2\u003eHow To Install BlindJS In VSCode?\u003c/h2\u003e\n        Open VSCode and type \u003ccode\u003ectrl+P\u003c/code\u003e and type \u003ccode\u003eext install ShaiMesisterano.blindjs\u003c/code\u003e\n\u003ch2\u003eHow To Use BlindJS In The Browser?\u003c/h2\u003e\n            \u003col\u003e\n                \u003cli\u003eInclude \u003ccode\u003elib/blind.min.js\u003c/code\u003e before \u003ccode\u003e\u0026lt;/body\u0026gt;\u003c/code\u003e\u003c/li\u003e\n                \u003cli\u003eCreate a wrapper and insert your code:\n                    \u003cpre\u003e\n    \u0026lt;div id=\"divElement\"\u0026gt;\n        function func(){\n            alert(\"Super Awesome!\");\n        }\n    \u0026lt;/div\u0026gt;\n                    \u003c/pre\u003e\n                \u003c/li\u003e\n                \u003cli\u003eAdd textarea placeholder:\n                    \u003cpre\u003e\n    \u0026lt;textarea id=\"textareaElement\"\u0026gt;\n    \u0026lt;/textarea\u0026gt;\n                    \u003c/pre\u003e\n                \u003c/li\u003e\n                \u003cli\u003eStart BlindJS with reference to an input text \u0026and; output element:\n                    \u003cpre\u003e\n    BlindJS.start({\n    input: divElement.innerText,\n    output: textareaElement\n    });\n                    \u003c/pre\u003e\n                \u003c/li\u003e\n            \u003c/ol\u003e\n            \u003ch2\u003eAbout\u003c/h2\u003e\n                \u003cp class=\"lead\"\u003e\n                    BlindJS was created by \u003ca href=\"http://www.mcterano.com/blog\" title=\"Shai Mesisterano\"\u003eShai Mesisterano\u003c/a\u003e\n                    and is licensed under \u003ca href=\"https://raw.github.com/ShaiMesisterano/BlindJS/master/LICENSE\"\n                                             title=\"MIT LICENSE\"\u003eMIT\u003c/a\u003e.\n                \u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaimesisterano%2Fblindjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaimesisterano%2Fblindjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaimesisterano%2Fblindjs/lists"}