npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-jquery-plugin

v1.0.5

Published

CLI for creating ready-to-start modern jQuery Plugins

Downloads

8

Readme

create-jquery-plugin

CLI for creating ready-to-start modern jQuery Plugins

Inspired from create-react-library and create-react-app

Build Status npm version Npm Downloadsl GitHub license GitHub Repo Donate on Paypal

create-jquery-plugin is a CLI tool for creating a ready-to-start jQuery plugin development environment with modern configurations. It will create a development environment with a pre-configured build system and you can get started immediately with your plugin development. Also, it is easily customizable that allows you to add or remove any tools or setup. The development setup will include the boilerplate project for the jQuery plugin development, pre-configured gulp tasks for JavaScript transpile, CSS/SCSS building, test/lint scripts, hot loading, example page, readme, etc.

Usage

The command will walk you through a few simple prompts and creates a ready-to-start local development setup for your new jQuery plugin.

npx create-jquery-plugin

Or, fast track with default settings, just pass your plugin name.

npx create-jquery-plugin jquery-my-plugin

This will create a directory with the your plugin name and with all the tools installed.

How to start the development

To start the development process, cd to your new plugin directory and run npm start or yarn start. For example, if your new plugin is "jquery-my-plugin", just run

cd jquery-my-plugin
npm start

It will open the example/index.html file with Browserify sync. You can start coding on the directory src, the example page will hot load as you make changes.

Features

  • Easy-to-use CLI.
  • CSS and SCSS templates.
  • Creates ready-to-start local development environment.
  • Unit testing with Jasmine and Karma.

Directory structure

The project boilerplate is from https://github.com/techlab/jquery-plugin-boilerplate

jquery-my-plugin
├── examples
│   └── index.html
├── node_modules
├── src
│   ├── js
│   │   └── jquery-plugin-boilerplate.js
│   └── scss
│       └── jquery-plugin-boilerplate.scss
├── test
│   ├── test-template.html
│   └── test.js
├── .gitignore
├── .npmignore
├── CONTRIBUTING.md
├── gulpfile.js
├── karma.conf.js
├── LICENSE
├── package.json
└── README.md

User Guide

Please find more detailed instructions and documentation here.

Acknowledgements

Grateful to the authors and contributers of create-react-library and create-react-app from which this project is inspired. Thankful to the 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.

License

Open source software licensed as MIT

Contribute

If you like the project please support with your contribution.

Donate on Paypal

Thank you and Happy Coding :)