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

astro-blog

v0.2.3

Published

Add a blog to your Astro site in just one line

Downloads

29

Readme

5

Astro Blog

The fastest way to get a blog started in Astro 🚀

astro-blog automatically adds several routes, and provides several schemas to get your blog up and running in minutes, not hours.

With built-in pagination, specifying author profiles, creating tags for your articles, and also support for draft articles. astro-blog should cover everything you need to get creating content for your website.

Demo here: astro-blog.futurethemes.io

Features

astro-blog is packed with great features to help you get going asap!

  • Support for articles, authors and tags
  • Automatic pagination support with customisable config option paginationSize
    • This also includes generating /blog/1, /blog/2 pages as the pages of posts
  • A simple default layout
    • This includes amazing SEO support out-of-the-box with astro-seo!
  • Great SEO support per page, and also for your /blog page itself!
  • Ability to add your own page Layout component. BYOLC... Bring your own Layout Component 👀
  • Great support for images out-of-the-box with Astro <Image>
  • Allows setting a Featured Post when you set featured: true in a blog post!

Screenshot 2024-01-16 085233

Installation

Astro Add

astro-blog supports installing via the astro add command for super easy install:

## Astro
astro add astro-blog

Manual Install

Or if you'd prefer to instal manually

## npm
npm install astro-blog

## pnpm
pnpm install astro-blog

Then add the integration to your astro.config.mjs

+ import AstroBlog from 'astro-blog'

export default defineConfig{
    site: 'https://www.mysite.com',
    integrations: [
        ...,
+       AstroBlog({
+           title: 'My Blog',
+       })
    ]
}

Set up schemas

Just one last step before you can start adding content is to set up your content collection schemas.

astro-blog provides schemas for Articles, Authors and Tags. So we can easily add definitions in the src/content/config.ts:

import { defineCollection } from 'astro:content'
import { ArticleSchema, AuthorSchema, TagSchema } from 'astro-blog/schema'

export const collections = {
    blog: defineCollection({
        type: 'content',
        schema: ArticleSchema,
    }),


    author: defineCollection({
        type: 'content',
        schema: AuthorSchema,
    }),

    tag: defineCollection({
        type: 'content',
        schema: TagSchema,
    }),
}

Set up Tailwind

Install Tailwind if you don't already have it installed astro add tailwind.

Then in your tailwind.config.mjs import the content paths from astro-blog:

+ import { AstroBlogTailwindPaths } from 'astro-blog'

/** @type {import('tailwindcss').Config} */
export default {
	content: [
        './src/**/*.{astro,html,js,jsx,ts,tsx}',
+        ...AstroBlogTailwindPaths, // Very important to spread these as it's an array!
    ],
    ...
}

Now you're all set up to start adding content! 🔥🙌

Creating content

Now you can create authors in your content/author folder, tags in your content/tag folder, and finally articles in your content/blog folder.

# content/author/jacob.md
---
name: Jacob Jenkins
description: Just some dude, doin some stuff
imageSrc: '../assets/jacob.png'
imageAlt: 'One hell of a guy'
---
# content/tag/space.md
---
tag: Space
---
# content/blog/andromeda.md
---
title: Andromeda - The Majestic Galaxy
description: It's a galaxy... From outer space!
datePublished: 2023-11-20T22:58:27.197Z
isDraft: false
author: jacob
tags: [space]
imageSrc: './images/andromeda.jpg'
imageAlt: 'Andromeda'
---

# 🌌✨ Meet Andromeda
## The majestic galaxy that's not just a pretty face in the cosmic crowd! 🚀🌠
...

Routes

astro-blog add 3 routes to your app:

  1. /blog this will be the home of all your articles. By default it will show as many articles as specified by your paginationSize (default 9). And if you have more than 9 articles, it'll show the pagination buttons.
  2. /blog/:page these pages are your pagination pages for if you have more than paginationSize articles.
  3. /blog/:article-slug This is your article!

Config Options

Title

Title for your website. Will be used in metadata and as browser tab title.

AstroBlog({
    title: 'My Site',
})

blogRoot

These options will get used on your blog root page: /blog

blogRoot.seo

An object containing config for Astro SEO.

AstroBlog({
    blogRoot: {
        seo: {
            description: 'A really cool description full of key words!',
        },
    },
})
blogRoot.description

Description metadata for your website. Can be used in page metadata.

AstroBlog({
    blogRoot: {
        description: 'A really cool description full of key words!',
    },
})

layoutComponent

Your standard layout component.

AstroBlog({
    layoutComponent: './src/components/layouts/Layout.component',
})

logo

A string of a path to your logo image. Or you can specify a light and dark version of your logo

AstroBlog({
    logo: {
        src: './src/path/to/image.png',
    }
})

OR

AstroBlog({
    logo: {
        light: './src/path/to/image.png',
        dark: './src/path/to/dark-image.png',
    }
})

paginateSize

default: 9

How many blog posts should be visible per page.

AstroBlog({
    paginateSize: 6,
})

prerender

default: true

Specify whether you want your blog pages to be prerendered. Useful for SSR/Hybrid environments.

AstroBlog({
    prerender: true,
})

License

MIT - 2024-present, jdtjenkins