{"id":23346357,"url":"https://github.com/tuckn/wshbasicpackage","last_synced_at":"2026-05-17T09:43:11.679Z","repository":{"id":39573402,"uuid":"280957270","full_name":"tuckn/WshBasicPackage","owner":"tuckn","description":"The package to accelerate development on WSH (Windows Script Host). Works in a pure Windows environment.","archived":false,"fork":false,"pushed_at":"2024-03-03T02:48:50.000Z","size":325,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-13T19:39:07.222Z","etag":null,"topics":["jscript","module","packager","windows","wsf","wsh"],"latest_commit_sha":null,"homepage":"https://tuckn.net/docs/WshBasicPackage/","language":"CSS","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/tuckn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["tuckn"],"patreon":"tuckn","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2020-07-19T21:54:54.000Z","updated_at":"2024-06-27T09:33:36.000Z","dependencies_parsed_at":"2025-02-13T19:33:19.926Z","dependency_job_id":"89a19470-66be-4d1d-bb4a-54b6691676c1","html_url":"https://github.com/tuckn/WshBasicPackage","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuckn%2FWshBasicPackage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuckn%2FWshBasicPackage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuckn%2FWshBasicPackage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuckn%2FWshBasicPackage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tuckn","download_url":"https://codeload.github.com/tuckn/WshBasicPackage/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247694882,"owners_count":20980733,"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":["jscript","module","packager","windows","wsf","wsh"],"created_at":"2024-12-21T07:13:32.833Z","updated_at":"2025-10-16T17:35:05.302Z","avatar_url":"https://github.com/tuckn.png","language":"CSS","funding_links":["https://github.com/sponsors/tuckn","https://patreon.com/tuckn"],"categories":[],"sub_categories":[],"readme":"# WshBasicPackage\n\nThe package to accelerate development on WSH (Windows Script Host). Works in a pure Windows environment.\n\n[Presentation PDF](https://tuckn.net/assets/20240302T131713JST_promoteWshModeJs-en_pub.pdf)\n\n## Operating environment\n\nWorks on JScript in Windows.\n\n## Installation\n\n(1) Create a directory of your WSH project.\n\n```console\nD:\\\u003e mkdir MyWshProject\nD:\\\u003e cd MyWshProject\n```\n\n(2) Download this ZIP and unzip or Use the following `git` command.\n\n```console\n\u003e git clone https://github.com/tuckn/WshBasicPackage.git ./WshModules/WshBasicPackage\nor\n\u003e git submodule add https://github.com/tuckn/WshBasicPackage.git ./WshModules/WshBasicPackage\n```\n\n(3) Create your JScript (.js) file. For Example,\n\n```console\nD:\\MyWshProject\\\n├─ MyScript.js \u003c- Your JScript code will be written in this.\n└─ WshModules\\\n    └─ WshBasicPackage\\\n        └─ dist\\\n          └─ bundle.js\n```\n\nI recommend JScript (.js) file encoding to be UTF-8 [BOM, CRLF].\n\n(4) Create your WSF packaging scripts file (.wsf).\n\n```console\nD:\\MyWshProject\\\n├─ Run.wsf \u003c- WSH entry file\n├─ MyScript.js\n└─ WshModules\\\n    └─ WshBasicPackage\\\n        └─ dist\\\n          └─ bundle.js\n```\n\nAnd you should include _.../dist/bundle.js_ into the WSF file.\nFor Example, The content of the above _Run.wsf_ is\n\n```xml\n\u003cpackage\u003e\n  \u003cjob id = \"run\"\u003e\n    \u003cscript language=\"JScript\" src=\"./WshModules/WshBasicPackage/dist/bundle.js\"\u003e\u003c/script\u003e\n    \u003cscript language=\"JScript\" src=\"./MyScript.js\"\u003e\u003c/script\u003e\n  \u003c/job\u003e\n\u003c/package\u003e\n```\n\nI recommend this WSH file (.wsf) encoding to be UTF-8 [BOM, CRLF].\n\nAwesome! This WSH configuration allows you to use the following functions in JScript (_.\\\\MyScript.js_).\n\n## Usage\n\nNow,  your JScript can use many helper functions that are defined in the following modules.\n\n### Core Modules\n\n- [tuckn/WshPolyfill](https://github.com/tuckn/WshPolyfill/)\n- [tuckn/WshUtil](https://github.com/tuckn/WshUtil/)\n- [tuckn/WshPath](https://github.com/tuckn/WshPath/)\n- [tuckn/WshOS](https://github.com/tuckn/WshOS/)\n- [tuckn/WshFileSystem](https://github.com/tuckn/WshFileSystem/)\n- [tuckn/WshProcess](https://github.com/tuckn/WshProcess/)\n- [tuckn/WshChildProcess](https://github.com/tuckn/WshChildProcess/)\n- [tuckn/WshNet](https://github.com/tuckn/WshNet/)\n- [tuckn/WshModeJs](https://github.com/tuckn/WshModeJs/)\n\n### Basic Apps\n\n- [tuckn/WshCommander](https://github.com/tuckn/WshCommander/)\n- [tuckn/WshConfigStore](https://github.com/tuckn/WshConfigStore/)\n- [tuckn/WshDotEnv](https://github.com/tuckn/WshDotEnv/)\n- [tuckn/WshLogger](https://github.com/tuckn/WshLogger/)\n\n## Documentation\n\nSee all specifications [here](https://tuckn.net/docs/WshBasicPackage/) and also below.\n\n- [WshPolyfill](https://tuckn.net/docs/WshPolyfill/)\n- [WshUtil](https://tuckn.net/docs/WshUtil/)\n- [WshPath](https://tuckn.net/docs/WshPath/)\n- [WshOS](https://tuckn.net/docs/WshOS/)\n- [WshFileSystem](https://tuckn.net/docs/WshFileSystem/)\n- [WshProcess](https://tuckn.net/docs/WshProcess/)\n- [WshChildProcess](https://tuckn.net/docs/WshChildProcess/)\n- [WshNet](https://tuckn.net/docs/WshNet/)\n- [WshModeJs](https://tuckn.net/docs/WshModeJs/)\n- [WshCommander](https://tuckn.net/docs/WshCommander/)\n- [WshConfigStore](https://tuckn.net/docs/WshConfigStore/)\n- [WshDotEnv](https://tuckn.net/docs/WshDotEnv/)\n- [WshLogger](https://tuckn.net/docs/WshLogger/)\n\n## License\n\nMIT\n\nCopyright (c) 2020 [Tuckn](https://github.com/tuckn)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuckn%2Fwshbasicpackage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftuckn%2Fwshbasicpackage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuckn%2Fwshbasicpackage/lists"}