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

@ochuzor/todo.txt-store

v3.1.1

Published

A javascript library for working with and especially storing [todo.txt](https://github.com/todotxt/todo.txt) text data. It is written in TypeScript and has a few classes for easily working with todo.txt texts. To install use:

Downloads

16

Readme

A javascript library for working with and especially storing todo.txt text data. It is written in TypeScript and has a few classes for easily working with todo.txt texts. To install use:

npm i @ochuzor/todo.txt-store 

There are two main things that you can get from this library: a store and a 'database-ish' class. A store has an interface as such:

export interface ITodoStore {
    writeData(data: ITodoDoc[]): void;
    readData(): ITodoDoc[];
    export(exporter: ITodoDataExporter): void;
}

The writeData() method writes/saves the list of data into the underlying storage medium.

The readData() method reads all the data currently stored in the medium and returns them as a list of ITodoDoc documents.

The export() method uses the supplied exporter to export the data into another format. There is currently no implementation but I'll add one soon.

The ITodoDoc represents a single todo document and has an interface:

export interface ITodoDoc {
    id: IdType;
    text: string;
}

There are currently two ITodoStore implementation that you can use: LocalStorageTodoStore and TextFileTodoStore. The LocalStorageTodoStore is intended for the web while TextFileTodoStore is intended for the desktop, for things like command line and electron.js apps.

Example usage for LocalStorageTodoStore:

import { LocalStorageTodoStore } from '@ochuzor/todo.txt-store';

const STORAGE_KEY = '<your-localstorage-key>';
const todoStore = new LocalStorageTodoStore(STORAGE_KEY);

const lsTodos = todoStore.readData();
// lsTodos = [{id: 1, text: 'call Bob'}, ...];

// add more...
lsTodos.push({ id: 101, text: 'x add one more todo'});

// store the data to localstorage
todoStore.writeData(lsTodos);

NB: the LocalStorageTodoStore also takes a second localstorage param, which is intended for testing purposes. Or if you want to customize the localstorage behavior. If left out, it uses the window.localstorage object.

The TextFileTodoStore is used in similar way:

import { TextFileTodoStore } from '@ochuzor/todo.txt-store';

// each line should represent one todo.txt item
// empty lines would be ignored
const fileName = '<path-to-your-todo.txt-file>';
const todoStore = new TextFile(fileName);
// ... then use as above

// the class also provides two convenient static functions
// to check if a file already exists, so you don't accidentally overwrite it
const isFileExist = TextFileTodoStore.FileExists('<path-to-your-todo.txt-file>');
// returns a boolean

// to just create a file store from an existing file
const store = TextFileTodoStore.FromFile('<path-to-your-todo.txt-file>');
// returns a newly created file store

// NB: if the file exists, it would be overwritten when you write to disk

The TextFileTodoStore stores the todo.txt items one item per line. It can load up and use a file written by hand or other tools. As long as the instructions here are followed, it'll work fine.

Then there is the TodoDb class. This class uses an indexer and a store object to work with todos; kindda like a database (but not really). It's a combination of an indexer and a storage functionality. The indexer holds the list of todos in memory and provides a search functionality. The store keeps the data on "permanent storage". How to use it:

import { TodoDb } from '@ochuzor/todo.txt-store';

// you can use whichever store and indexer you want
// ofc, as long as it implementst the appropriate interface
const filePath = '<path-to-your-todo.txt-file>';
const store = TextFileTodoStore.FromFile(filePath);
const indexer = ... // <the indexer of choice> see below

const db = new TodoDb(indexer, store);

...then you can use it like an indexer for todo items. For ex: you can add items:

db.addDoc({id: 1001, text: '(A) add a documentation'});

If the doc already exists, then it will be replaced. When you add a doc to the db, it is saved to the store automatically, e.g. the localstorage or a file on the filesystem, depending on the store you use.

You can also retrieve a doc

db.getDoc(id);

If the doc is not found, a null object is returned. A null object has an id (the one you supplied) and an empty string for text.

You can delete a doc.

db.deleteDoc(id);

If the document to delete is not found, nothing happens. After a delete the underlying store data is updated as well.

The indexer object has the following interface:

export interface ITodoIndexer {
    addDoc(doc: ITodoDoc): void;
    getDoc(id: IdType): ITodoDoc;
    deleteDoc(id: IdType): void;
    getAll(): ITodoDoc[];
    search(query: string): ITodoDoc[];
}

You can build one, or get one from todo.txt-indexer.

Final note

This was created purely for learning purposes. You can also take a look at the tests.