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

wireframe-framework

v0.0.15

Published

[Wireframe](http://laniewski.me/Wireframe) is a flexible, modular and highly-customizable SCSS framework for rapid webiste prototyping. It provides you with a solid architectural baseline upon which to complete your own work.

Downloads

22

Readme

Wireframe

Wireframe is a flexible, modular and highly-customizable SCSS framework for rapid webiste prototyping. It provides you with a solid architectural baseline upon which to complete your own work.

Installation

NPM:

$ npm install wireframe-framework

Copy/paste (not recommended):

You can download Wireframe and save it into your project’s css directory. This method is not recommended because you lose the ability to easily and quickly manage and update Wireframe as a dependency.

Getting started

Wireframe follows a specific folder structure, which you can follow as well in your own CSS directory:

  • configuration: Global variables, site-wide settings, config.
  • components: Discrete, complete parts of UI such as forms.
  • content: Unclassed HTML elements, such as typography.
  • layout: Very basic elements of your website skeleton.
  • resets: Low-specificity, far-reaching rulesets.
  • utils: Override, utility and helper classes.
@import "wireframe-framework/configuration/functions/split-str";
@import "wireframe-framework/configuration/functions/strip-units";
@import "wireframe-framework/configuration/functions/to-length";
@import "wireframe-framework/configuration/functions/to-number";
@import "wireframe-framework/configuration/mixins/typography";
@import "wireframe-framework/configuration/mixins/responsive";
@import "wireframe-framework/configuration/mixins/clearfix";
@import "wireframe-framework/configuration/typography";
@import "wireframe-framework/configuration/responsive";
@import "wireframe-framework/configuration/colors";

@import "wireframe-framework/utils/responsive/display";
@import "wireframe-framework/utils/prototype/grid";
@import "wireframe-framework/utils/display/flex";
@import "wireframe-framework/utils/display/rounded";
@import "wireframe-framework/utils/align/align-start";
@import "wireframe-framework/utils/align/align-center";
@import "wireframe-framework/utils/align/align-end";
@import "wireframe-framework/utils/align/align-top";
@import "wireframe-framework/utils/align/align-middle";
@import "wireframe-framework/utils/align/align-bottom";
@import "wireframe-framework/utils/align/align-around";
@import "wireframe-framework/utils/align/align-between";
@import "wireframe-framework/utils/is-unselectable";
@import "wireframe-framework/utils/is-reversed";

@import "wireframe-framework/resets/normalize";
@import "wireframe-framework/resets/highlight";
@import "wireframe-framework/resets/global";

@import "wireframe-framework/content/typography";
@import "wireframe-framework/content/table";
@import "wireframe-framework/content/list";

@import "wireframe-framework/layout/app";
@import "wireframe-framework/layout/block";
@import "wireframe-framework/layout/content";
@import "wireframe-framework/layout/drawer";
@import "wireframe-framework/layout/footer";
@import "wireframe-framework/layout/header";

@import "wireframe-framework/components/forms/control";
@import "wireframe-framework/components/forms/buttons";
@import "wireframe-framework/components/forms/inputs";
@import "wireframe-framework/components/box";
@import "wireframe-framework/components/grid";
@import "wireframe-framework/components/menu";
@import "wireframe-framework/components/alerts";
@import "wireframe-framework/components/badges";

Contributing

Bug reporting

Changes and improvements are more than welcome! Feel free to fork and open a pull request. If you have found any issues, please report them here - they are being tracked on GitHub Issues.

Developing

$ npm run <command>

List of commands

| Command | Description | |---------|--------------------------------------------------------------------| | build | Builds Wireframe | | watch | Rebuilds on changes, creates a live local server for documentation | | clean | Cleans the build folder | | docs | Builds documentation |