# noddity-fs-retrieval

> For remote retrieval of a simple blog index and content

Latest version **1.1.0** (published 2015-06-09) · VOL license · 0 weekly downloads

## Install

```sh
npm install noddity-fs-retrieval
pnpm add noddity-fs-retrieval
yarn add noddity-fs-retrieval
bun add noddity-fs-retrieval
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2015-06-09 |
| First published | 2014-11-03 |
| Weekly downloads | 0 |
| License | VOL |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | artskydj |
| Maintainers | artskydj |

## Links

- npm: https://www.npmjs.com/package/noddity-fs-retrieval
- Repository: https://github.com/ArtskydJ/noddity-fs-retrieval
- Issues: https://github.com/ArtskydJ/noddity-fs-retrieval/issues
- npm.io page: https://npm.io/package/noddity-fs-retrieval

## Dependencies (1)

- [text-metadata-parser](https://npm.io/package/text-metadata-parser.md) ^3.0.0

## Recent versions

- 1.1.0 (latest) — 2015-06-09
- 1.0.1 — 2015-02-09
- 1.0.0 — 2014-11-03

## README

Noddity FS Retrieval
=====

[![Build Status](https://travis-ci.org/ArtskydJ/noddity-fs-retrieval.svg?branch=master)](https://travis-ci.org/ArtskydJ/noddity-fs-retrieval)

Alternative to [noddity-retrieval](https://github.com/TehShrike/noddity-retrieval), that uses the file system instead of a server.

# example

```js
	var retrieve = new Retrieve('./content')

	retrieve.getIndex(function(err, index) {
		if (!err && index.length > 0) {
			// Get the most recent post
			retrieve.getPost(index.pop(), function(err, post) {
				console.log("Found post named " + post.metadata.title)
				console.log("The words inside it are:\n" + post.content)
			})
		}
	})

```

# license

[VOL](http://veryopenlicense.com/)

---
_Source: https://npm.io/package/noddity-fs-retrieval · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
