{"id":19024097,"url":"https://github.com/astrohelm/shared-stream","last_synced_at":"2026-03-02T04:32:29.015Z","repository":{"id":230267538,"uuid":"777415419","full_name":"astrohelm/shared-stream","owner":"astrohelm","description":"Streaming to worker through SharedArrayBuffer","archived":false,"fork":false,"pushed_at":"2024-03-28T18:06:03.000Z","size":23,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-19T13:45:55.783Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","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/astrohelm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null}},"created_at":"2024-03-25T20:09:11.000Z","updated_at":"2024-03-25T20:09:17.000Z","dependencies_parsed_at":"2024-03-28T19:29:22.833Z","dependency_job_id":"268141d6-552c-4bb8-8809-d97148043cab","html_url":"https://github.com/astrohelm/shared-stream","commit_stats":null,"previous_names":["astrohelm/shared-stream"],"tags_count":0,"template":false,"template_full_name":"astrohelm/node-workspace","purl":"pkg:github/astrohelm/shared-stream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrohelm%2Fshared-stream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrohelm%2Fshared-stream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrohelm%2Fshared-stream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrohelm%2Fshared-stream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/astrohelm","download_url":"https://codeload.github.com/astrohelm/shared-stream/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astrohelm%2Fshared-stream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29992306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"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-08T20:34:49.391Z","updated_at":"2026-03-02T04:32:28.999Z","avatar_url":"https://github.com/astrohelm.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eAstrohelm default workspace\u003c/h1\u003e\n\n\u003ch2 align=\"center\"\u003eInstallation guide 🚀\u003c/h2\u003e\n\n### First step: workspace installation\n\nYou can use this repository as template - otherwise install it manually:\n\n```bash\n  # Download repository\n  git clone https://github.com/astrohelm/node-workspace\n  rm -rf ./path/to/workspace/.git ./path/to/workspace/package-lock.json\n  cd ./path/to/workspace/\n  # Update and install dependencies\n  ncu -u\n  npm i\n  # Update node.js (optional)\n  nvm install latest\n  nvm use latest\n```\n\n### Second step: Package personalization\n\nUpdate package json:\n\n- Replace all fields with prefix \u003ccode\u003eyour-\u003c/code\u003e\n- Update engines, if current is out of date\n- Remove browser field \u0026 dist folder, if you don't support it\n\n```js\n// package.json\n{\n  \"license\": \"MIT\",\n  \"version\": \"0.0.1\",\n  \"type\": \"commonjs\",\n  \"name\": \"your-package-name\",\n  \"homepage\": \"https://astrohelm.ru\",\n  \"description\": \"your-package-description\",\n  \"author\": \"your-name \u003cyour-mail\u003e\",\n  \"keywords\": [\"your-keyword #1\", \"your-keyword #n\"],\n\n  \"main\": \"index.js\",\n  \"types\": \"types/index.d.ts\",\n  \"packageManager\": \"npm@9.6.4\",\n  \"readmeFilename\": \"README.md\",\n  \"engines\": { \"node\": \"18 || 19 || 20\" },\n  \"browser\": {},\n  \"files\": [\"/dist\", \"/lib\", \"/types\"],\n\n  \"scripts\": {\n    \"test\": \"node --test \u0026\u0026 tsc\",\n    \"dev\": \"node index.js\",\n    \"prettier:fix\": \"prettier --write \\\"**/*.{js,ts,json,html,cjs,md,yaml}\\\"\",\n    \"eslint:fix\": \"eslint --fix \\\"**/*.{js,ts}\\\"\"\n  },\n\n  \"repository\": { \"type\": \"git\", \"url\": \"git+https://github.com/astrohelm/your-package-name.git\" },\n  \"bugs\": { \"url\": \"https://github.com/astrohelm/your-package-name/issues\", \"email\": \"your-mail\" },\n\n  \"devDependencies\": {\n    \"@types/node\": \"^18.15.10\",\n    \"eslint\": \"^8.40.0\",\n    \"eslint-config-astrohelm\": \"^1.0.0\",\n    \"eslint-config-prettier\": \"^8.8.0\",\n    \"eslint-plugin-import\": \"^2.27.5\",\n    \"eslint-plugin-prettier\": \"^4.2.1\",\n    \"prettier\": \"^2.8.8\",\n    \"typescript\": \"^5.0.2\"\n  }\n}\n```\n\n### Third step: About files\n\nGo to CHANGELOG.md and update it for your package. _WARNING !_ Don't forget about date (xxxx-xx-xx).\n\n```md\n\u003c!-- CHANGELOG.md --\u003e\n\n# Changelog\n\n## [Unreleased][unreleased]\n\n## [0.0.1][] - xxxx-xx-xx\n\n- Stable release version\n- Repository created\n\n[unreleased]: https://github.com/astrohelm/your-package-name/compare/v0.0.1...HEAD\n[0.0.1]: https://github.com/astrohelm/your-package-name/releases/tag/v0.0.1\n```\n\nUpdate AUTHORS\n\n```md\n \u003c!-- AUTHORS --\u003e\n\nyour-name \u003cyour-mail\u003e\n```\n\n### Almost last step: Update README.md\n\nReplace your README.md with next information and change Your-package-name to actual.\n\n```md\n\u003c!-- README.md --\u003e\n\u003ch1 align=\"center\"\u003eYour-package-name v0.0.1\u003c/h1\u003e\n\n\u003ch2 align=\"center\"\u003eInitial release 🚀\u003c/h2\u003e\n\n\u003ch2 align=\"center\"\u003eCopyright \u0026 contributors\u003c/h2\u003e\n\n\u003cp align=\"center\"\u003e\nCopyright © 2023 \u003ca href=\"https://github.com/astrohelm/Your-package-name/graphs/contributors\"\u003eAstrohelm contributors\u003c/a\u003e.\nThis repository is \u003ca href=\"./LICENSE\"\u003eMIT licensed\u003c/a\u003e.\u003cbr/\u003e\nAnd it is part of \u003ca href=\"https://github.com/astrohelm\"\u003eAstrohelm ecosystem\u003c/a\u003e.\n\u003c/p\u003e\n```\n\n### Last step: Save results\n\n_WARNING !_ Update this file before moving throw this step.\n\nCreate a new package in [organization][https://github.com/astrohelm/] repository. Use next commands\nto save you package.\n\n```bash\ngit init\ngit remote add origin your-package-location\n# Start from here, if you used template\ngit branch -M main # if your default branch is not main\ngit commit -am \"Repository init\"\ngit tag v0.0.1\ngit push origin main\ngit push origin v0.0.1\ngit checkout -b dev\ngit push origin dev\n```\n\nReturn to your organization repository and do:\n\n- Add keywords\n- Update description\n- Draft release with `v0.0.1` tag and `v0.0.1` as a title and updated README file as description.\n\n\u003e If you want to create library you could publish it to npm with `npm publish` command.\n\nCongratulations, package initialized 🚀\n\n## About files \u0026 structure\n\nThis workspace have commonjs in use by default. You can switch it in package.json if you want.\n\n- `dist` directory used for fronted package analog. You can use it if your package is\n  multi-platform, [readme](./dist/README.md).\n- `eslint` astrohelm eslint rules\n- `types` .d.ts library types exports\n- `CHANGELOG.md` in use for project history documentation\n- `Makefile` ultimate commands shortcuts creator\n- `tests` here you can put all test coverage of your package\n- `.github` github ci pipeline by default\n- `lib` folder should contain all you library logic,**_WARNING !_** Remove if you not writing\n  library. Replace with **src** folder.\n\n\u003ch2 align=\"center\"\u003eCopyright \u0026 contributors\u003c/h2\u003e\n\n\u003cp align=\"center\"\u003e\nCopyright © 2023 \u003ca href=\"https://github.com/astrohelm/node-workspace/graphs/contributors\"\u003eAstrohelm contributors\u003c/a\u003e.\nThis workspace is \u003ca href=\"./LICENSE\"\u003eMIT licensed\u003c/a\u003e.\u003cbr/\u003e\nAnd it is part of \u003ca href=\"https://github.com/astrohelm\"\u003eAstrohelm ecosystem\u003c/a\u003e.\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrohelm%2Fshared-stream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastrohelm%2Fshared-stream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrohelm%2Fshared-stream/lists"}