{"id":21291663,"url":"https://github.com/komlev/strip-modules-names-loader","last_synced_at":"2025-06-10T17:10:45.170Z","repository":{"id":57372771,"uuid":"77068615","full_name":"komlev/strip-modules-names-loader","owner":"komlev","description":"Strip modules names loader for webpack","archived":false,"fork":false,"pushed_at":"2016-12-21T16:41:22.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-29T13:48:57.308Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/komlev.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-12-21T16:36:10.000Z","updated_at":"2016-12-23T08:48:46.000Z","dependencies_parsed_at":"2022-08-29T11:10:28.638Z","dependency_job_id":null,"html_url":"https://github.com/komlev/strip-modules-names-loader","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/komlev%2Fstrip-modules-names-loader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komlev%2Fstrip-modules-names-loader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komlev%2Fstrip-modules-names-loader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komlev%2Fstrip-modules-names-loader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/komlev","download_url":"https://codeload.github.com/komlev/strip-modules-names-loader/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/komlev%2Fstrip-modules-names-loader/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259114577,"owners_count":22807252,"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-21T13:38:31.213Z","updated_at":"2025-06-10T17:10:45.139Z","avatar_url":"https://github.com/komlev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"#Strip modules names loader\n[Webpack] loader for stripping names from ES6 modules.\n\nLoader has the same purpose as [add-module-exports] plugin.\nIt removes modules names from exports.\nPlugin will affect all the imports, but loader could be used to separately for specific files.\n\nIt is advised to have only one **default** export\nIf you have several named exports from file all of them will be ignored.\n\n##Example\n\nExisting file\n```js\nexport default {\n  a: 1,\n  b: true\n}\n\nconst c = {c: 2}\nexport {\n  c\n}\n```\n\nNormal Babel v6 modules output\n```js\nexports.default = {\n  a: 1,\n  b: true\n};\nexports.c = c;\n```\n\nLoader modules output\n```js\nmodule.exports = {\n  a: 1,\n  b: true\n};\nexports.c = c;\n```\n\n[Webpack]:            http://webpack.github.io/\n[add-module-exports]: https://github.com/59naga/babel-plugin-add-module-exports\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkomlev%2Fstrip-modules-names-loader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkomlev%2Fstrip-modules-names-loader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkomlev%2Fstrip-modules-names-loader/lists"}