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

@dropseed/codeplus

v0.6.3

Published

Make your code elements interactive.

Downloads

99

Readme

codeplus

Add interactive elements to your <code> without a bunch of custom markup or JavaScript.

  • filenames
  • tabs and tab groups (with "remember tab selection")
  • copy button

CleanShot 2022-04-29 at 10 08 41

The key to codeplus is that you don't have to do much to make it work, and your code blocks also look fine when it's not in use. If you're writing docs in markdown, for example, you want those to look normal on GitHub and other sites where you don't have control over the markdown rendering. Users should still be able to read everything in that form. But when you render the same code on your site, you get an extra layer of interactivity just by adding codeplus on top.

This library does not do syntax highlighting! That means you can use any server-side (or client-side) syntax highlighter you want and codeplus will add the interactive features after the fact.

Features

Filenames

To render filenames all you need to do is start your code block with a comment line that says the filename:

# .pullapprove.yml
version: 3
groups: ...

When codeplus runs, you'll get something like this:

Tab display name

Instead of filenames, you can also use a "display name" in parenetheses:

# (GitHub)
version: 3
groups: ...

Or you can include a filename and a display name:

# .pullapprove.yml (GitHub)
version: 3
groups: ...

With codeplus:

Tab groups

To get a group of tabs, just put the code blocks right next to each other:

# (GitHub)
version: 3
groups: ...
# (Bitbucket)
version: 3
groups: ...

With codeplus:

Copy button

The copy/paste button is added to all code blocks by default (shown on hover in this example):

Remember tab selection

A nice use of tabs is to separate examples by language or ecosystem. If you're browsing docs in "Python" mode for example, you probably want to see the Python tab on every page you visit.

We can do this for you with localStorage:

CleanShot 2022-04-29 at 10 25 41

Installation

npm install @dropseed/codeplus
import Codeplus from "@dropseed/codeplus";

window.addEventListener('load', function() {
    new Codeplus({}).render();
});

CDN

<script src="https://unpkg.com/@dropseed/[email protected]/dist/browser.js"></script>
<script>
window.addEventListener("load", function() {
    new Codeplus({}).render();
});
</script>

Options

new Codeplus({
    // The query selector to find your code elements
    selector: "pre > code",
    // Saves a user's tab selection in localStorage and shows that tab on page load (ex. "Python")
    rememberTabSelections: true,
    // Enable debug console.logs
    debug: false,
    // Use classes to add styling (or look at the default CSS classes)
    instanceClass: "rounded-t-none group",
    navClass: "bg-black rounded-t overflow-hidden",
    tabClass: "px-3 py-2 text-sm text-gray-300 hover:text-gray-100",
    activeTabClass: "bg-[#282c34]",
    inactiveTabClass: "",
    copyButtonClass: "items-center group-hover:flex hidden rounded border border-gray-200 px-2 py-1 text-sm",
    // Custom render for the tabs
    renderTab: function(tab, instance) {
        const icon = "...";
        tab.innerHTML = icon + tab.innerHTML;
    },
    // Custom render for the copy button
    renderCopyButton: function(copyButton, instance, copied) {
        if (!copied) {
            copyButton.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" class="w-4 h-4 bi bi-clipboard" viewBox="0 0 16 16"><path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"/><path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z"/></svg> Copy`;
        }
    },
}).render();

Styling

Styling can be done either with inserting classes via options or by using the default CSS classes:

.codeplus {}
.codeplus-group {}
.codeplus-nav {}
.codeplus-tab {}
.codeplus-tab.active {}
.codeplus-tab.inactive {}
.codeplus-instances {}
.codeplus-instance {}
.codeplus-copy-btn {}

By default there are only a few styles for basic layout help. Any colors, font sizes, etc. are up to you and will probably be similar to your syntax highlighting theme.