{"id":23330642,"url":"https://github.com/techlab/create-jquery-plugin","last_synced_at":"2025-08-23T00:31:06.525Z","repository":{"id":42745293,"uuid":"281150048","full_name":"techlab/create-jquery-plugin","owner":"techlab","description":"CLI for creating ready-to-start modern jQuery Plugins","archived":false,"fork":false,"pushed_at":"2023-04-21T02:26:22.000Z","size":697,"stargazers_count":5,"open_issues_count":7,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-12-05T11:13:56.980Z","etag":null,"topics":["cli","create-jquery-plugin","gulp","jquery","jquery-plugin","jquery-plugin-boilerplate","package","utility"],"latest_commit_sha":null,"homepage":"http://techlaboratory.net/create-jquery-plugin","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/techlab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://www.paypal.me/dipuraj"]}},"created_at":"2020-07-20T15:10:06.000Z","updated_at":"2023-02-24T02:13:19.000Z","dependencies_parsed_at":"2023-02-18T06:16:03.217Z","dependency_job_id":null,"html_url":"https://github.com/techlab/create-jquery-plugin","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techlab%2Fcreate-jquery-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techlab%2Fcreate-jquery-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techlab%2Fcreate-jquery-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techlab%2Fcreate-jquery-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techlab","download_url":"https://codeload.github.com/techlab/create-jquery-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230651181,"owners_count":18259375,"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":["cli","create-jquery-plugin","gulp","jquery","jquery-plugin","jquery-plugin-boilerplate","package","utility"],"created_at":"2024-12-20T22:20:09.181Z","updated_at":"2024-12-20T22:20:09.801Z","avatar_url":"https://github.com/techlab.png","language":"JavaScript","readme":"# create-jquery-plugin\n#### CLI for creating ready-to-start modern jQuery Plugins\n##### Inspired from [create-react-library](https://www.npmjs.com/package/create-react-library) and [create-react-app](https://github.com/facebook/create-react-app)\n\n\n[![Build Status](https://travis-ci.org/techlab/create-jquery-plugin.svg?branch=master)](https://travis-ci.org/techlab/create-jquery-plugin)\n[![npm version](https://badge.fury.io/js/create-jquery-plugin.svg)](https://www.npmjs.com/package/create-jquery-plugin)\n[![Npm Downloadsl](https://badgen.net/npm/dm/create-jquery-plugin?icon=npm)](https://www.npmjs.com/package/create-jquery-plugin)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/techlab/create-jquery-plugin/master/LICENSE)\n[![GitHub Repo](https://badgen.net/badge/icon/create-jquery-plugin?icon=github\u0026label=\u0026color=0da4d3)](https://github.com/techlab/create-jquery-plugin)\n[![Donate on Paypal](https://img.shields.io/badge/PayPal-dipuraj-blue.svg)](https://www.paypal.me/dipuraj)\n\n\n**create-jquery-plugin** is a CLI tool for creating a ready-to-start jQuery plugin development environment with modern configurations.\nIt will create a development environment with a pre-configured build system and you can get started immediately with your plugin development.\nAlso, it is easily customizable that allows you to add or remove any tools or setup.\nThe development setup will include the boilerplate project for the jQuery plugin development, pre-configured gulp tasks for JavaScript transpile,\nCSS/SCSS building, test/lint scripts, hot loading, example page, readme, etc.\n\n+ [Homepage and Documentation](http://techlaboratory.net/create-jquery-plugin)\n+ [GitHub Repository](https://github.com/techlab/create-jquery-plugin)\n+ [GitHub Issues](https://github.com/techlab/create-jquery-plugin/issues)\n\nUsage\n-----\n\nThe command will walk you through a few simple prompts and creates a ready-to-start local development setup for your new jQuery plugin.\n\n```bash\nnpx create-jquery-plugin\n```\n\nOr, fast track with default settings, just pass your plugin name.\n```bash\nnpx create-jquery-plugin jquery-my-plugin\n```\n\nThis will create a directory with the your plugin name and with all the tools installed.\n\n\nHow to start the development\n-----\nTo start the development process, `cd` to your new plugin directory and run `npm start` or `yarn start`.\nFor example, if your new plugin is \"jquery-my-plugin\", just run\n\n```bash\ncd jquery-my-plugin\nnpm start\n```\n\nIt will open the `example/index.html` file with [Browserify](http://browserify.org/) sync. You can start coding on the directory `src`, the example page will hot load as you make changes.\n\nFeatures\n-----\n- Easy-to-use CLI.\n- CSS and SCSS templates.\n- Creates ready-to-start local development environment.\n- Unit testing with [Jasmine](https://jasmine.github.io/) and [Karma](https://karma-runner.github.io/).\n\nDirectory structure\n-----\nThe project boilerplate is from https://github.com/techlab/jquery-plugin-boilerplate\n```\njquery-my-plugin\n├── examples\n│   └── index.html\n├── node_modules\n├── src\n│   ├── js\n│   │   └── jquery-plugin-boilerplate.js\n│   └── scss\n│       └── jquery-plugin-boilerplate.scss\n├── test\n│   ├── test-template.html\n│   └── test.js\n├── .gitignore\n├── .npmignore\n├── CONTRIBUTING.md\n├── gulpfile.js\n├── karma.conf.js\n├── LICENSE\n├── package.json\n└── README.md\n```\n\nUser Guide\n----\nPlease find more detailed instructions and documentation [here](http://techlaboratory.net/create-jquery-plugin).\n\nAcknowledgements\n---\nGrateful to the authors and contributers of [create-react-library](https://www.npmjs.com/package/create-react-library) and [create-react-app](https://github.com/facebook/create-react-app) from which this project is inspired.\nThankful to the [jquery-plugin-boilerplate](https://github.com/techlab/jquery-plugin-boilerplate) for providing the project templates. Also, thanks to the authors and contributors of the amazing Node.js tools used in this project.\n\nLicense\n----\nOpen source software licensed as [MIT](https://github.com/techlab/create-jquery-plugin/blob/master/LICENSE)\n\nContribute\n----\nIf you like the project please support with your contribution.\n\n[Donate on Paypal](https://www.paypal.me/dipuraj)\n\nThank you and Happy Coding :)\n","funding_links":["https://www.paypal.me/dipuraj"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechlab%2Fcreate-jquery-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechlab%2Fcreate-jquery-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechlab%2Fcreate-jquery-plugin/lists"}