{"id":24511719,"url":"https://github.com/devnax/validex","last_synced_at":"2026-02-07T02:33:21.397Z","repository":{"id":112974054,"uuid":"443492680","full_name":"devnax/validex","owner":"devnax","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-05T13:14:43.000Z","size":577,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-14T08:41:24.380Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/devnax.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-01T07:33:19.000Z","updated_at":"2025-01-05T13:14:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"65d4d0cb-c74b-405a-afe9-cb3b1731eb2c","html_url":"https://github.com/devnax/validex","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devnax/validex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnax%2Fvalidex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnax%2Fvalidex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnax%2Fvalidex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnax%2Fvalidex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devnax","download_url":"https://codeload.github.com/devnax/validex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devnax%2Fvalidex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29184978,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T00:44:15.062Z","status":"online","status_checked_at":"2026-02-07T02:00:07.217Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-01-22T00:40:55.451Z","updated_at":"2026-02-07T02:33:21.372Z","avatar_url":"https://github.com/devnax.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/devnax/makepack\" rel=\"noopener\" target=\"_blank\"\u003e\u003cimg  src=\"https://raw.githubusercontent.com/devnax/makepack/main/logo.png\" alt=\"Makepack logo\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eMakepack\u003c/h1\u003e\n\n**MakePack** is a command-line interface (CLI) tool that helps you to quickly set up, build, and manage JavaScript, TypeScript, React, and React-TypeScript libraries for use in npm projects. With just a few simple commands, you can generate your own libraries, start a development server, or build and publish your project to the npm repository.\n\n## Installation\n\nTo install **MakePack** globally, run the following command:\n\n```bash\nnpm install -g makepack\n```\n\nThis will allow you to use the `makepack` command anywhere in your terminal.\n\n## Commands\n\n### `create`\n\nThe `create` command is used to create a new library project. It initializes the project structure, configures essential files, and sets up the environment for you to start working on your library.\n\n#### Usage\n\n```bash\nmakepack create\n```\n\n#### Description\n\n- Creates a new library project by setting up the necessary configurations and boilerplate files.\n  \nThis command will guide you through the initial setup for your library.\n\n---\n\n### `serve`\n\nThe `serve` command starts a development server for your library, providing you with a live-reload environment where you can test and iterate on your library in real-time.\n\n#### Usage\n\n```bash\nmakepack serve [options]\n```\n\n#### Options\n\n- `-p, --port \u003cnumber\u003e`  \n  _Port number_ (optional) (default is `5000`).\n  \n- `-e, --root \u003cfile\u003e`  \n  _Root file_ (optional) (default is `serve.jsx` or `serve.tsx`). The entry point for your application. Specify the main JavaScript/TypeScript file to start the server.\n\n#### Description\n\n- Starts a local development server for testing and debugging your library.\n  \nExample:\n\n```bash\nmakepack serve --port 4000 --root src/index.ts\n```\n\n---\n\n### `pack`\n\nThe `pack` command is used to build your library and optionally publish it to the npm repository. This command compiles your code into a distributable format and prepares it for sharing with others.\n\n#### Usage\n\n```bash\nmakepack pack [options]\n```\n\n#### Options\n\n- `-e, --entry \u003cfile\u003e`  \n  _Entry file or directory_ (default is `src/**/*.{tsx,ts,js,jsx}`).  \n  Specify the entry file or use a glob pattern to select the files to include in your library.\n\n- `-p, --publish`  \n  _Publish the project to the npm repository_ (default is `false`).  \n  Add this flag if you want to publish the library to npm after building it.\n\n#### Description\n\n- Builds the project by compiling and bundling your library.\n- Optionally publishes the library to the npm repository.\n\nExample:\n\n```bash\nmakepack pack --entry src/index.ts --publish\n```\n\nThis will compile the project from `src/index.ts` and then publish the library to npm.\n\n---\n\n## Example Workflow\n\n1. Create a new project:\n\n```bash\nmakepack create\n```\n\n2. Start the server for development:\n\n```bash\nmakepack serve --port 4000 --root index.tsx\n```\n\n3. Once you're ready to build and publish your library:\n\n```bash\nmakepack pack --entry src/**/*.{tsx,ts,js,jsx} --publish\n```\n\nThis will build your library and publish it to npm.\n\n\n## 🤝 Contributing\n\nContributions are welcome! Please check out the [contribution guidelines](https://github.com/devnax/makepack).\n\n---\n\n## 📄 License\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/MIT).\n\n---\n\n## 📞 Support\n\nFor help or suggestions, feel free to open an issue on [GitHub](https://github.com/devnax/makepack/issues) or contact us via [devnaxrul@gmail.com](mailto:devnaxrul@gmail.com).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevnax%2Fvalidex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevnax%2Fvalidex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevnax%2Fvalidex/lists"}