Skip to content

Latest commit

 

History

History
75 lines (55 loc) · 1.31 KB

README.md

File metadata and controls

75 lines (55 loc) · 1.31 KB

Noutious

A simple file-based content manage system driven by Node.js, inspired by Hexo and its core Warehouse.

Note: This project is still under development.

Quick Start

// npm
$ npm install noutious
// yarn
$ yarn add noutious
// pnpm
$ pnpm add noutious

Then import it and initialize an instance.

import Noutious from 'noutious'

function initNoutious() {
  const noutious = new Noutious({
    localDb: process.env.NODE_ENV === 'production',
    draft: false,
    excerpt: ''
  })
  return noutious
}

API

getBlogPosts()

// Get all posts data or specific posts data
const posts = await noutious.getPosts({
  date: -1 // Sort result by date
  include: [{ tags: "Noutious" }] // Filter result by specific value
})

getBlogCategories()

// Get all categories
const categories = await noutious.getCategories()

getBlogTags()

// Get all tags
const tags = await noutious.getTags()

getBlogPost()

// Find post by its slug
const post = await noutious.getPost('hello-world')

persistData()

// Pre-generate all data and write into local file.
await noutious.persistData()

License

MIT