{"id":13343896,"url":"https://github.com/pabaibara/zero","last_synced_at":"2025-04-13T02:06:54.803Z","repository":{"id":74829429,"uuid":"122850061","full_name":"pabaibara/zero","owner":"pabaibara","description":"Boilerplate for Zeplin extension projects based on webpack","archived":false,"fork":false,"pushed_at":"2018-03-09T06:38:42.000Z","size":59,"stargazers_count":17,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-26T19:45:10.320Z","etag":null,"topics":["boilerplate","extension","webpack","zeplin","zeplin-extension"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/pabaibara.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":"2018-02-25T15:45:28.000Z","updated_at":"2023-03-04T17:48:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d830d6e-2914-41c5-ac2e-d75bcf66da60","html_url":"https://github.com/pabaibara/zero","commit_stats":null,"previous_names":["pabaibara/zero"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabaibara%2Fzero","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabaibara%2Fzero/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabaibara%2Fzero/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pabaibara%2Fzero/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pabaibara","download_url":"https://codeload.github.com/pabaibara/zero/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246129764,"owners_count":20728148,"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":["boilerplate","extension","webpack","zeplin","zeplin-extension"],"created_at":"2024-07-29T19:32:05.159Z","updated_at":"2025-03-29T02:31:34.171Z","avatar_url":"https://github.com/pabaibara.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\".github/zero-logo.png\" width=\"400\" /\u003e\n\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://extensions.zeplin.io\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/zeplin-extension-ffbe12.svg\" alt=\"Zeplin Extension\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\nStart your Zeplin extension from Zero with Webpack.\n\nIf you want more power features without build process configuration – use official solution [zem](https://github.com/zeplin/zem)\n\n## Zero includes\n\n* Base project file structure\n* Webpack (dev watching \u0026 production minification)\n* Babel\n* Prettier\n* Eslint (AirBnB \u0026 Prettier)\n* EditorConfig\n* Husky \u0026 Lint-staged (pre-commit hooks)\n\n## How to Start\n\nFirst, you need last stable Node.js `^8.9.4`. Follow this [guide](https://github.com/creationix/nvm/blob/master/README.md#installation) if you don't have any.\n\nNext, install project dependencies:\n\n```bash\nnpm install\n```\n\nTo start developing run:\n\n```bash\nnpm start\n```\n\nResult build will be at `dist` dir. To add your extension into local macOS Zeplin client follow the instruction from official [tutorial](https://github.com/zeplin/zeplin-extension-documentation/blob/master/tutorial.md#adding-a-local-extension). Path to your local extension be like:\n\n```\nfile://[absolute_path_to_zero_project_folder]/dist/manifest.json\n```\n\nDon't forget to replace `[absolute_path_to_zero_project_folder]` with your folder absolute path.\n\nAnd finally, to get production ready build of your extension, just replace Zero credantials in `src/manifest.json` to yours and run following:\n\n```bash\nnpm run build\n```\n\n## Project structure\n\n```\nzero\n├── README.md\n├── node_modules\n├── package.json\n├── package-lock.json\n├── .eslintrc.js\n├── .eslintignore\n├── .prettierrc\n├── .editorconfig\n├── .gitignore\n├── config\n│   └── paths.js\n│   └── webpack.common.js\n│   └── webpack.dev.js\n│   └── webpack.prod.js\n├── dist                  \u003c-- result extension build will be there\n│   └── index.js\n│   └── manifest.json\n└── src\n    └── _example-lib.js\n    └── index.js\n    └── manifest.json\n```\n\n## Extensions builded with Zero\n\n* [Zepcode](https://github.com/artemnovichkov/zepcode) - Zeplin extension that generates Swift snippets from colors, fonts and layers\n\n## Authors\n\nBaybara Pavel, baybara.pavel@gmail.com\n\nArtem Novichkov, novichkoff93@gmail.com [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/artemnovichkov?utm_source=github\u0026utm_medium=button\u0026utm_term=artemnovichkov\u0026utm_campaign=github)\n\n## License\n\nZero is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpabaibara%2Fzero","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpabaibara%2Fzero","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpabaibara%2Fzero/lists"}