{"id":19466904,"url":"https://github.com/scommons/scommons-nodejs","last_synced_at":"2026-04-20T14:08:32.625Z","repository":{"id":35664476,"uuid":"191148645","full_name":"scommons/scommons-nodejs","owner":"scommons","description":"Scala.js facades for Node.js core and libraries","archived":false,"fork":false,"pushed_at":"2024-03-09T14:25:32.000Z","size":92,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T13:51:57.713Z","etag":null,"topics":["bindings","facades","node-js","nodejs","scala","scala-js","scalajs","scalajs-facade","testing"],"latest_commit_sha":null,"homepage":"","language":"Scala","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/scommons.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-06-10T10:41:24.000Z","updated_at":"2024-03-09T13:02:44.000Z","dependencies_parsed_at":"2024-11-10T18:33:02.295Z","dependency_job_id":"73c0611c-05e2-47ac-92ae-63d7629fec6d","html_url":"https://github.com/scommons/scommons-nodejs","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/scommons/scommons-nodejs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scommons%2Fscommons-nodejs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scommons%2Fscommons-nodejs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scommons%2Fscommons-nodejs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scommons%2Fscommons-nodejs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scommons","download_url":"https://codeload.github.com/scommons/scommons-nodejs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scommons%2Fscommons-nodejs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32050461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bindings","facades","node-js","nodejs","scala","scala-js","scalajs","scalajs-facade","testing"],"created_at":"2024-11-10T18:31:35.458Z","updated_at":"2026-04-20T14:08:32.603Z","avatar_url":"https://github.com/scommons.png","language":"Scala","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n[![CI](https://github.com/scommons/scommons-nodejs/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/scommons/scommons-nodejs/actions/workflows/ci.yml?query=workflow%3Aci+branch%3Amaster)\n[![Coverage Status](https://coveralls.io/repos/github/scommons/scommons-nodejs/badge.svg?branch=master)](https://coveralls.io/github/scommons/scommons-nodejs?branch=master)\n[![scala-index](https://index.scala-lang.org/scommons/scommons-nodejs/scommons-nodejs-core/latest.svg)](https://index.scala-lang.org/scommons/scommons-nodejs/scommons-nodejs-core)\n[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.8.0.svg)](https://www.scala-js.org)\n\n## Scala Commons Node.js\n[Scala.js](https://www.scala-js.org) facades for\n[Node.js](https://nodejs.org/docs/latest-v12.x/api/documentation.html)\nplatform.\n\n\n### How to add it to your project\n\n```scala\nval scommonsNodejsVer = \"1.0.0-SNAPSHOT\"\n\nlibraryDependencies ++= Seq(\n  \"org.scommons.nodejs\" %%% \"scommons-nodejs-core\" % scommonsNodejsVer,\n  \n  \"org.scommons.nodejs\" %%% \"scommons-nodejs-test\" % scommonsNodejsVer % \"test\"\n)\n```\n\nLatest `SNAPSHOT` version is published to [Sonatype Repo](https://oss.sonatype.org/content/repositories/snapshots/org/scommons/), just make sure you added\nthe proper dependency resolver to your `build.sbt` settings:\n```scala\nresolvers += \"Sonatype Snapshots\" at \"https://oss.sonatype.org/content/repositories/snapshots/\"\n```\n\n### How to use it\n\nFacades for [Node.js](https://nodejs.org/docs/latest-v12.x/api/) APIs:\n* [Process](core/src/main/scala/scommons/nodejs/Process.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/ProcessSpec.scala)\n* [ChildProcess](core/src/main/scala/scommons/nodejs/ChildProcess.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/ChildProcessSpec.scala)\n* [EventEmitter](core/src/main/scala/scommons/nodejs/raw/EventEmitter.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/EventEmitterSpec.scala)\n* [FS](core/src/main/scala/scommons/nodejs/FS.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/FSSpec.scala)\n  * [Constants](core/src/main/scala/scommons/nodejs/raw/FSConstants.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/StatsSpec.scala)\n* [OS](core/src/main/scala/scommons/nodejs/raw/OS.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/OSSpec.scala)\n* [Path](core/src/main/scala/scommons/nodejs/raw/Path.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/PathSpec.scala)\n* [URL](core/src/main/scala/scommons/nodejs/raw/URL.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/URLSpec.scala)\n* Stream\n  * [Readable](core/src/main/scala/scommons/nodejs/raw/Readable.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/stream/ReadableSpec.scala)\n  * [Writable](core/src/main/scala/scommons/nodejs/raw/Writable.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/stream/WritableSpec.scala)\n* [Timers](core/src/main/scala/scommons/nodejs/raw/Timers.scala) =\u003e [tests](test/src/test/scala/scommons/nodejs/test/AsyncTestSpecTest.scala)\n* [Buffer](core/src/main/scala/scommons/nodejs/Buffer.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/BufferSpec.scala)\n\nUseful Scala APIs and utils:\n* [StreamReader](core/src/main/scala/scommons/nodejs/util/StreamReader.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/util/StreamReaderSpec.scala)\n* [SubProcess](core/src/main/scala/scommons/nodejs/util/SubProcess.scala) =\u003e [tests](showcase/src/test/scala/scommons/nodejs/util/SubProcessSpec.scala)\n\n## Documentation\n\nYou can find more documentation [here](https://scommons.github.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscommons%2Fscommons-nodejs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscommons%2Fscommons-nodejs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscommons%2Fscommons-nodejs/lists"}