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 🙏

© 2026 – Pkg Stats / Ryan Hefner

blogger-admin-wp

v1.0.1

Published

layout for Blogger that mimics the WordPress admin panel

Readme

Blogger AdminWP

This project is designed to override the styles of Blogger's administration panel, specifically the "Layout" section, which is used to manage the template's widgets. It is easy to install and does not require advanced knowledge.

Preview

Installation

Copy the contents of the main.css or main.min.css file, then in your Blogger XML template, add the following code just before the </head> tag:

<b:template-skin><![CDATA[
  /* Paste the contents of main.css or main.min.css here */
]]></b:template-skin>

If you are working on a larger project using a development environment (such as Hamlet), you can install it as an npm dependency:

npm install blogger-admin-wp

Then, you need to include the CSS file in your project. The import path would be something like this:

node_modules/blogger-admin-wp/main.min.css

Usage

Once installed, you will see some changes in Blogger's admin panel. The next step is to create the layout, which consists of columns. Each column must have a container with the class layout-section, as follows:

<div class='layout-section'>
  <!-- Rest of the content -->
</div>

This class only affects the design mode. However, if this mandatory container interferes with your template's design, you can create it conditionally:

<b:tag cond='data:view.isLayoutMode' name='div' class='layout-section'>
  <!-- Rest of the content -->
</b:tag>

This way, the container will only be displayed in design mode and will not affect your template's layout. Alternatively, you can add the layout-section class to an existing container in your design. Each container with the layout-section class will be displayed as a column in design mode.

Enabling editing button

By default, to edit a widget you can click anywhere on a widget. If you want to disable this functionality and show an edit button, create a container that wraps all your layout sections and add the layout-edit class:

<b:tag cond='data:view.isLayoutMode' name='div' class='layout-edit'>
  <!-- Rest of the content -->
</b:tag>

Customization

If you want to customize the styles, you can edit the variables located in abstracts/_variables.scss and recompile the CSS file.

License

blog-admin-wp is licensed under the MIT License.