0.2.1 • Published 5 months ago

@notree/server v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

Server

Open source backend ecosystem for notree

Providers

FileSystem

Reads a directory of markdown notes provided a path

const graph = await FileSystem.read({
  path: path.resolve(__dirname, 'your-directory'),
});

GitHub

Reads a directory of markdown notes provided a GitHub repository.

Create a GitHub access token with read access to your repository. https://github.com/settings/tokens/new?scopes=repo

If you are developing locally, the test suite looks for your token in .env (at the root of the project) as GITHUB_TOKEN.

const graph = await GitHub.read({
  owner: 'you',
  repo: 'your-repository',
  basePath: 'optional/path/to/root',
  branch: 'defaults-to-main',
  token: process.env.GITHUB_TOKEN,
});
0.2.1

5 months ago

0.2.0

5 months ago

0.1.0

10 months ago