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

@phoenix-plugin-registry/brackets-fasttagging

v2.2.1

Published

Generates a tag with classes ans id in a really fast way.

Downloads

3

Readme

FastTagging for Brackets

An extension for Brackets to generate a tag with classes ans id in a really fast way.

How to Install

  1. Select Brackets > File > Extension Manager...
  2. Search for this extension.
  3. Click on the Install button.

How to Use FastTagging

FastTagging get you rid of wasting time with a basic and hard repetitive task on HTML writing: Starting tags, write and define an id and write and define one or more classes.

With FastTagging you can only type the tag name (without the angle brackets <>) followed by a dot (.) and one or more class names, so you press the shortcut "CTRL (CMD for MAC) + SHIFT + . (dot)" and Surprise! Your tag is created!

a. p.description (pressing SHORTCUT) => <p class="description"></p>
b. div.header.black-header (pressing SHORTCUT) => <div class="header black-header"></div>

If you don't want to type any tag name before the dot (.), no problem! FastTagging will put there a div for you:

a. .header.black-header (pressing SHORTCUT) => <div class="header black-header"></div>
b. .card (pressing SHORTCUT) => <div class="card"></div>

So, you say: "WoW, that's great! But what about the id?" Let's talk about this right now. To fill an id for your new tag, you can put a hashtag (#) either right after your tag name or at the beginning of your typing. See:

a. p#warning  (pressing SHORTCUT) => <p id="warning"></p>
b. h1#pagetitle.basetheme (pressing SHORTCUT) => <h1 id="pagetitle" class="basetheme"></h1>
c. #pagebody.basetheme.shadow (pressing SHORTCUT) => <div id="pagebody" class="basetheme shadow"></div>

Furthermore, for us as tableless developers, we have the possibility to make a div tag fastly:

a. . (pressing SHORTCUT) => <div class=""></div>
b. # (pressing SHORTCUT) => <div></div>

It worths to note that FastTagging adds a menu option at "Edit" menu called Auto Create TAG, so you can use it if wish.

So, that's it! Enjoy it and tell us if there's any doubt or bug.

License

GPL-licensed -- see main.js for details.

Compatibility

Tested on Brackets Release 1.9 on Windows 10.