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

frontbox

v1.0.8

Published

Static Site Generators

Downloads

26

Readme

frontbox

Static Site Generators

frontbox

Info

This is using Jade, CSS processor like SASS, SCSS, Stylus, BrowserSync, Minify, ext to build a static website very easy.

Install

$ npm install frontbox -g

Usage

Choose one with them

$ frontbox [sass | scss | styl | stylus]

install npm package

$ npm install

after that you must run

$ frontbox fixmd

and run

$ gulp

Optimize code

If you want optimize js. Notice, if you use ES6, you must run

$ gulp es5
$ gulp optimize-js

And optimize css

$ gulp optimize-css

Or both

$ gulp optimize

CSS

You can use assets very easily. You just use resolve

body {
  background: resolve('foobar.jpg');
  background: resolve('icons/baz.png');
}

Example with Config.yml

If you want to use config file. Easily, you just call it.

_templates\config.yml

title: frontbox
author: lynkxyz
menu:
- {name: About Me, url: '#about-me'}
- {name: Work, url: '#work'}
- {name: Clients, url: '#clients'}

You can call it in every jade files in _templates

_templates\componets\_header.jade

head
    title #{title}
body
    h1 #{author}
    each val in menu
        li
            a(href="#{val.url}") #{val.name}

And it will render to html

<head>
    <title>frontbox</title>
</head>
<body>
    <h1>lynkxyz</h1>
    <ul>
        <li><a href="#about-me">About Me</a></li>
        <li><a href="#work">Work</a></li>
        <li><a href="#clients">Clients</a></li>
    </ul>
</body>

Example with Data

You can create Markdown file in _templates\posts.

_templates\posts\test1.md

---
title: fontbox
year: 2016
---
### Hello world

_templates\componets\_header.jade

h1 #{test1.title}
span #{test1.year}
div!= test1.body

And it will render to html

<h1>fontbox</h1>
<span>2016</span>
<div>
    <h3>Hello world</h3>
</div>

You can also using Iteration to many files In _templates\componets\_header.jade

- var files = [test1, test2, test3]
ul
    each val in files
        li #{test1.title}

And it will render to html

<ul>
    <li>frontbox</li>
    <li>lynkxyz</li>
    <li>foo</li>
</ul>

Using with sub folder in _templates\posts Create folder blog in _templates\posts

_templates\posts\blog\test1.md

---
title: fontbox
year: 2016
---
### Hello world

In _templates\componets\_header.jade

h1 #{blog.test1.title}
span #{blog.test1.year}
div!= tblog.est1.body

And it will render to html

<h1>fontbox</h1>
<span>2016</span>
<div>
    <h3>Hello world</h3>
</div>

More

Follow jade, yaml

Contact

https://www.facebook.com/lynkxyz

LICENSE

(MIT License)

Copyright (c) 2016 lynkxyz

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

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.