{"id":15022393,"url":"https://github.com/awibox/react-npm-package-template","last_synced_at":"2025-10-23T15:31:52.512Z","repository":{"id":42781393,"uuid":"236028186","full_name":"awibox/react-npm-package-template","owner":"awibox","description":"The template that will help you quickly start developing your NPM package for React","archived":false,"fork":false,"pushed_at":"2023-03-04T05:47:44.000Z","size":1942,"stargazers_count":8,"open_issues_count":9,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-06T19:09:30.703Z","etag":null,"topics":["coveralls","css-modules","eslint","jest","npm-package","react-component","scss","template","travis-ci","webpack"],"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/awibox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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":"2020-01-24T15:28:22.000Z","updated_at":"2024-09-04T14:36:47.000Z","dependencies_parsed_at":"2024-09-16T19:18:15.480Z","dependency_job_id":null,"html_url":"https://github.com/awibox/react-npm-package-template","commit_stats":{"total_commits":61,"total_committers":3,"mean_commits":"20.333333333333332","dds":0.3114754098360656,"last_synced_commit":"a6613a6b0889f3f86181eaa7cef4a7200fbc79ef"},"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awibox%2Freact-npm-package-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awibox%2Freact-npm-package-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awibox%2Freact-npm-package-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awibox%2Freact-npm-package-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awibox","download_url":"https://codeload.github.com/awibox/react-npm-package-template/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237852534,"owners_count":19376704,"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":["coveralls","css-modules","eslint","jest","npm-package","react-component","scss","template","travis-ci","webpack"],"created_at":"2024-09-24T19:57:53.142Z","updated_at":"2025-10-23T15:31:52.086Z","avatar_url":"https://github.com/awibox.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n![react-npm-package-template](https://repository-images.githubusercontent.com/236028186/e0034e00-3ee4-11ea-8676-b3f80c86678a)\n\n[![Version](https://img.shields.io/npm/v/react-npm-package-template)](https://www.npmjs.com/package/react-npm-package-template)\n[![Build](https://travis-ci.org/awibox/react-npm-package-template.svg?branch=master)](https://travis-ci.org/awibox/react-npm-package-template)\n[![Coverage](https://coveralls.io/repos/github/awibox/react-npm-package-template/badge.svg?branch=master)](https://coveralls.io/github/awibox/react-npm-package-template?branch=master)\n[![Minified size](https://img.shields.io/bundlephobia/min/react-npm-package-template)](https://github.com/awibox/react-npm-package-template/blob/master/LICENSE)\n[![Downloads](https://img.shields.io/npm/dm/react-npm-package-template)](https://www.npmjs.com/package/react-npm-package-template)\n[![Dependabot](https://api.dependabot.com/badges/status?host=github\u0026repo=awibox/react-npm-package-template)](https://dependabot.com)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/awibox/react-npm-package-template/pulls)\n[![Tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest)\n\n\u003c/div\u003e\n\n## Table of contents\n* [How to install](#howtoinstall)\n* [Initializing the package](#initializing)\n* [Rename a component](#rename)\n* [Build of the package](#build)\n* [Publishing a package](#publish)\n* [Travis CI](#travis)\n* [Coveralls](#coveralls)\n* [Badges in the readme](#badges)\n* [Community profile](#community)\n* [Contributing](#contributing)\n\n\u003ca name=\"howtoinstall\"\u003e\u003c/a\u003e\n## How to install\nYou can use this project like template. \nTo do this, you need press button \"**Use this template**\".\n\nOr clone repository and go to the project folder.\n```bash\ngit clone https://github.com/awibox/react-redux-app-boilerplate.git ProjectName\ncd ProjectName\n```\nThen you should install required dependencies.\n```bash\nyarn install\n```\n\u003ca name=\"initializing\"\u003e\u003c/a\u003e\n## Initializing the package\nThe first step is to initialize your package. You should execute following command:\n```bash\nnpm init\n```\nAnd fill in the required fields (package name, version, license). You can correct the other fields manually in the **package.json**.\n\n\u003ca name=\"rename\"\u003e\u003c/a\u003e\n## Rename a component\nThe next step is to replace the ```YourComponentName``` in the entire project with the one you need.\n\n\u003ca name=\"build\"\u003e\u003c/a\u003e\n## Build of the package\nAfter writing the code you need to build the package with the following command:\n```bash\nyarn  build\n```\n\n\u003ca name=\"publish\"\u003e\u003c/a\u003e\n## Publishing a package\nTo publish a package, run the command:\n```bash\nnpm publish\n```\nIf you are not logged in to npm you should run the command before publishing:\n```bash\nnpm login\n```\n\n\u003ca name=\"travis\"\u003e\u003c/a\u003e\n## Travis CI\nYou need to register on the [Travis CI](https://travis-ci.org/) and connect the repository.\n\n\u003ca name=\"coveralls\"\u003e\u003c/a\u003e\n## Coveralls\nYou need to register on the [Coveralls](https://coveralls.io/) and connect the repository.\n\n\u003ca name=\"badges\"\u003e\u003c/a\u003e\n## Badges in the README.md\nFor **badges** to work you need to change the repository name in the link and image paths.\n\n\u003ca name=\"community\"\u003e\u003c/a\u003e\n## Community profile\nDon't forget to edit files such as [CONTRIBUTING.md](/.github/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](/.github/CODE_OF_CONDUCT.md).\n\n\u003ca name=\"contributing\"\u003e\u003c/a\u003e\n## Contributing\nPlease read through our [CONTRIBUTING.md](/.github/CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawibox%2Freact-npm-package-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawibox%2Freact-npm-package-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawibox%2Freact-npm-package-template/lists"}