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

praetexo

v1.0.0

Published

Praetexo is designed to be a very lightweight CSS only framework that offers a responsive 12 column grid and navbar.

Downloads

58

Readme

Praetexo

Praetexo is an extremely lightweight CSS only framework that offers a responsive 12 column grid and navbar.

Note that this project is still in its early stages and so may not yet provide complete/full functionality. We will be building up functionality over the next few months through numerous small iterative releases.

Table of Contents

About The Project

Praetexo is designed to be a very lightweight CSS only (no JavaScript) framework that is intended as an almost drop-in replacement for Bootstrap.

Features

  • Extremely lightweight
  • CSS only, no JavaScript
  • 12 column responsive grid
  • Navigation bar

Getting Started

Add the package as a dependency.

Installation

Add the package to your dependencies.

npm install praetexo

Import Package

Import the library in your code.

<link rel="stylesheet" href="praetexo.css">

Example HTML

<!DOCTYPE html>
<html>
<head>
    <title>Site Name</title>
    <link rel="stylesheet" href="../dist/praetexo.css">
</head>
<body>
    <div class="container">
        <nav>
            <a class="page-title" href="#">Site Name</a>
            <label for="menu" tabindex="0">
                <span></span>
                <span></span>
                <span></span>
            </label>
            <input id="menu" type="checkbox" />
            <ul>
                <li><a href="#">Mastodon</a></li>
                <li><a href="#">Twitter</a></li>
                <li><a href="#">Github</a></li>
            </ul>
        </nav>
        <main>
            <div class="row">
                <div class="col-12 text-center">
                    <h1>Hello</h1>
                    <h3>Some or other byline goes here.</h3>
                </div>
            </div>
            <div class="row">
                <div class="col-4">
                    <h2>Blaherty 1</h2>
                    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur eu augue consequat, ...</p>
                </div>
                <div class="col-4">
                    <h2>Blaherty 2</h2>
                    <p>Quisque et blandit risus. Praesent diam dolor, tempus scelerisque orci a, ...</p>
                </div>
                <div class="col-4">
                    <h2>Blaherty 3</h2>
                    <p>Etiam sed nisi a massa varius elementum. Nam mollis est leo, ...</p>
                </div>
            </div>
        </main>
        <footer>
            <div class="row footer">
                <div class="col-6">
                    Copyright 2024 Acme Corp.
                </div>
                <div class="col-6 right">
                    <a href="#">Privacy Policy</a>
                </div>
            </div>
        </footer>
    </div>
</body>
</html>

Usage

See the User Guide for detailed information.

Build From Source

Prerequisites

You will need npm to build from source. Grunt is used as a build tool and will be installed by npm.

Install Dependencies

Simply run npm to install the dependencies.

npm install

Build

Run Grunt to build the CSS from source.

grunt

Roadmap

See the open issues for a full list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Limeslice Software Foundation https://limeslice.org

Limitation of Liability

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.