{"id":19844355,"url":"https://github.com/cljsjs/cljsjs.npm","last_synced_at":"2025-05-01T20:32:23.329Z","repository":{"id":43611363,"uuid":"71503483","full_name":"cljsjs/cljsjs.npm","owner":"cljsjs","description":null,"archived":false,"fork":false,"pushed_at":"2016-11-28T19:37:29.000Z","size":8,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-06T18:07:13.338Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","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/cljsjs.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":"2016-10-20T20:51:53.000Z","updated_at":"2023-03-28T04:28:00.000Z","dependencies_parsed_at":"2022-08-29T16:21:12.846Z","dependency_job_id":null,"html_url":"https://github.com/cljsjs/cljsjs.npm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cljsjs%2Fcljsjs.npm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cljsjs%2Fcljsjs.npm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cljsjs%2Fcljsjs.npm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cljsjs%2Fcljsjs.npm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cljsjs","download_url":"https://codeload.github.com/cljsjs/cljsjs.npm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251941171,"owners_count":21668683,"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-12T13:03:49.511Z","updated_at":"2025-05-01T20:32:22.977Z","avatar_url":"https://github.com/cljsjs.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cljsjs.npm\n\n# NOT REALLY WORKING YET\n\nAutomatically package npm modules as jars with `deps.cljs` files.\n\n## Goals\n\n- Full dead code elimination\n- Use React addons as separate dependencies instead of react vs. react-with-addons\n- As easy to use as normal Cljsjs packages, or preferably easier\n- Easier to package than normal Cljsjs packages\n\n## TODO\n\n- Closure can't yet resolve npm `require`s https://github.com/google/closure-compiler/issues/1773\n- Fix Closure, or\n- Invent a way to preprocess `require` calls so that Closure can deal with them\n\n## Examples\n\n```$bash\n❯ boot package\nPackage material-ui\nWriting pom.xml and pom.properties...\nWriting material-ui-0.15.4.jar...\nPackage react\nWriting pom.xml and pom.properties...\nWriting react-15.3.1.jar...\nPackage react-addons-create-fragment\nWriting pom.xml and pom.properties...\nWriting react-addons-create-fragment-15.3.1.jar...\nPackage react-addons-transition-group\nWriting pom.xml and pom.properties...\nWriting react-addons-transition-group-15.3.1.jar...\nPackage react-dom\nWriting pom.xml and pom.properties...\nWriting react-dom-15.3.1.jar...\nPackage react-tap-event-plugin\nWriting pom.xml and pom.properties...\nWriting react-tap-event-plugin-1.0.0.jar...\n\n~/Source/cljsjs.npm master 8s\n❯ tree target\ntarget\n├── cljsjs.npm\n│   ├── material-ui\n│   │   ├── lots of files\n│   ├── react\n│   │   ├── lib\n│   │   │   ├── lots of files\n│   │   └── react.js\n│   ├── react-addons-create-fragment\n│   │   └── index.js\n│   ├── react-addons-transition-group\n│   │   └── index.js\n│   ├── react-dom\n│   │   ├── index.js\n│   │   └── server.js\n│   └── react-tap-event-plugin\n│       └── src\n│           ├── defaultClickRejectionStrategy.js\n│           ├── injectTapEventPlugin.js\n│           ├── TapEventPlugin.js\n│           └── TouchEventUtils.js\n├── deps.cljs\n├── material-ui-0.15.4.jar\n├── META-INF\n│   └── maven\n│       └── cljsjs.npm\n│           ├── material-ui\n│           │   ├── pom.properties\n│           │   └── pom.xml\n│           ├── react\n│           │   ├── pom.properties\n│           │   └── pom.xml\n│           ├── react-addons-create-fragment\n│           │   ├── pom.properties\n│           │   └── pom.xml\n│           ├── react-addons-transition-group\n│           │   ├── pom.properties\n│           │   └── pom.xml\n│           ├── react-dom\n│           │   ├── pom.properties\n│           │   └── pom.xml\n│           └── react-tap-event-plugin\n│               ├── pom.properties\n│               └── pom.xml\n├── react-15.3.1.jar\n├── react-addons-create-fragment-15.3.1.jar\n├── react-addons-transition-group-15.3.1.jar\n├── react-dom-15.3.1.jar\n└── react-tap-event-plugin-1.0.0.jar\n\n81 directories, 1380 files\n\n~/Source/cljsjs.npm master\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcljsjs%2Fcljsjs.npm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcljsjs%2Fcljsjs.npm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcljsjs%2Fcljsjs.npm/lists"}