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

acnestis

v0.3.1

Published

`Acnestis` is an open-source CLI tool for developers looking to create a minimalistic, hassle-free blog. With Acnestis, you can easily write and publish blog posts using plain markdown files, without the need for complex templates or build processes. The

Downloads

15

Readme

Acnestis

Acnestis is an open-source CLI tool for developers looking to create a minimalistic, hassle-free blog. With Acnestis, you can easily write and publish blog posts using plain markdown files, without the need for complex templates or build processes. The tool's simple and intuitive design makes it the perfect choice for developers who want to focus on creating content, rather than worrying about the technicalities of setting up a blog.

The name Acnestis, meaning the part of the back between the shoulder blades and the loins which an animal cannot reach to scratch, reflects the tool's goal of providing a simple yet powerful solution to the often complex task of blogging. Whether you're a developer looking to share your thoughts and expertise or just someone who wants to create a personal blog, Acnestis is the perfect tool to help you get started.

An example blog

How It Works?

  • Create a repository on GitHub (username.github.io)
  • Post your posts to the folder _posts
  • Create config.yml file which describe your name and the blog description
  • Put GitHub action file to build it.

What I Promise?

  • There will not be theme support ever.
  • There will not be any extension support ever.
  • There will not be any complicated logic like e-commerce, CRM, forms, etc.
  • It will stay clean, and minimalist ever.
  • It will stay text-based.

config.yml

title: Your blog title
description: The dead-simple blog ever
keywords: your blog, awesome
author: Your name
footer: <a href="https://github.com/axe-api/acnestis" target="_blank">acnestis - 2023</a>
hostname: https://yoursite.com
lang: en
theme: both

Theme Support

Acnestis supports dark and light themes. You can manage themes with the theme configuration;

  • theme: both: Users can decide the theme.
  • theme: dark: Only dark theme.
  • theme: light: Only light theme.

GitHub Action

name: Deploy static content to Pages

on:
  push:
    branches: ["master"]
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: "pages"
  cancel-in-progress: true

jobs:
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Setup Pages
        uses: actions/configure-pages@v3
      - name: Acnestis Build
        run: |
          npm i -g acnestis
          acnestis
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v1
        with:
          path: "./dist"
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v1

LICENSE

MIT