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

koala-webgen

v1.8.0

Published

Koala - Static Website Generator

Downloads

44

Readme

Koala - Static Website Generator

About

The project aims to create simple to use, scalable and fast static website generator.

Core features:

  • generated code is fast and efficient, can be deployed as a static website
  • one CSS and one JS file for whole website
  • required skill set should be HTML, CSS, JavaScript
  • ideal for small websites and blogs

Showcase

Example websites:

  • https://www.newtowndata.com/blog/ (author's personal blog)

Usage

To use the Koala for your project, start by cloning the template repository at https://github.com/NewTownData/koala-template

Alternatively, you can run

npm i koala-webgen

in your project and then use commands to

  • initialize the project:
    koala-webgen init
  • start development server
    koala-webgen start
  • build release artifacts
    koala-webgen build

See the template project for more details: https://github.com/NewTownData/koala-template

Development

How to run the project

You need Node.JS v20 (LTS) on your machine.

Then run the following commands to start the environment:

npm install
npm start

Connect to the website at http://localhost:3080/

Release

In order to build release artifact in dist directory, you need to run:

npm run build

Project Structure

Themes

Themes are placed in website/themes directory.

Selected theme is referenced in website/configuration.json as theme key. The name corresponds to a theme folder name in website/themes.

Each theme folder should contain:

  • index.html - root website template
  • style.css - theme CSS styles
  • script.js - theme JavaScript file (optional)
  • components/<name>.html - components templates

Templates use Handlerbars for templating: https://handlebarsjs.com/

Pages

Pages are used for a static content that is not a post, e.g. About page. They are placed in website/pages directory and named <name>.html. They should contain plain HTML code without heading.

You should specify page / post variables. See the section Page / Post Variables.

Posts

Posts are used for regular content, like weekly updates or news. They are placed in website/posts directory and named <name>.html. They should contain plain HTML code without heading.

You should specify page / post variables. See the section Page / Post Variables.

Page / Post Variables

Every page or post should specify the following variables:

  • title - page title
  • date - date of creation / publishing of the post in UTC timezone
  • tags - keywords or categories of the post (optional)

Variables are defined as HTML comments:

<!-- title: About -->
<!-- date: 2020-05-20 10:45:00 -->
<!-- tags: tag1,tag2,tag3 -->

Variable template is:

<!-- NAME: VALUE -->

Please, note the space after colon and spaces after and before --.

Format is:

  • title - any text
  • date - YYYY-mm-dd HH:MM:SS (24 hour ISO format)
  • tags - comma-separated values

Bugs

Please, open an issue at https://github.com/NewTownData/koala-webgen/issues

Questions

If you have any question, feel free to send an e-mail at [email protected]

Author

Voyta Krizek (see Questions above for an e-mail)