Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
collected-notes
Advanced tools
A TypeScript client for the Collected Notes API.
Install it
$ yarn add collected-notes
Import it
import { read, site, collectedNotes } from 'collected-notes';
Use it to read a single note:
let note = await read('blog', 'api', 'json');
The returned note will follow the Note
interface.
let note = await read('blog', 'api', 'md');
The returned note will be a string with the Markdown content.
let note = await read('blog', 'api', 'txt');
The returned note will be a string with the note content as plain text, without Markdown.
Use it to get a site data with their public notes.
let sitePath = 'blog';
let page = 1;
let visibility = 'public';
let siteData = await site(sitePath, page, visibility);
The return value will be an object with the format:
type SiteData = { site: Site; notes: Note[] };
To use the private API, first, get your API token from https://collectednotes.com/accounts/me/token.
Now create a new client instance with:
let cn = collectedNotes('your@email.com', 'your-api-token');
Get the list of sites of the logged-in user.
let sites = await cn.sites();
Each site of the list follows the Site
interface.
You can now get the latest notes, public and private, of a site based on their ID.
let sitePath = 'blog';
let page = 1; // default is 1
let notes = await cn.latestNotes(sitePath, page);
Each note of the list follows the Note
interface.
You can use the client to create a new note for a site of the user:
let sitePath = 'blog'; // optional, if missing the API will use your first site
let noteContent = {
body: '# Title\nContent of the note.',
visiblity: 'private',
};
let note = await cn.create(noteContent, sitePath);
The returned note follows the Note
interface.
Note: This method will validate your body starts with
#
and throw a CNError instance if not.
You can use the client to update an existant note:
let sitePath = 'blog';
let notePath = 'api';
let noteContent = {
body: '# Title\nNew content of the note.',
visiblity: 'private',
};
let note = await cn.update(sitePath, notePath, noteContent);
The returned note follows the Note
interface.
Note: This method will validate your body starts with
#
and throw a CNError instance if not.
You can use the client to delete a note:
let sitePath = 'blog';
let notePath = 'api';
await cn.destroy(sitePath, notePath);
The returned response is the same returned by the Fetch API, you can use response.ok
or response.statusCode
to check if the delete was successful.
You can use the client to get the user data.
let user = await cn.me();
The returned user follows the User
interface.
You can use the client to reorder your notes.
let sitePath = 'blog';
let notes: number[] = [2, 3, 1];
let orderedIds = await cn.reorder(sitePath, notes);
The returned orderedIds is an array of the ids in their new order, this will be the same as the notes argument.
You can use the client to search your notes.
let sitePath = 'blog';
let term = 'new content';
let page = 1; // default is 1
let visibility = 'public'; // default is not defined
let notes = await cn.search(sitePath, term, page, visibility);
Get the rendered body of a note. This method is useful when you don't want to get the markdown or when you want to use custom Markdown syntax supported by Collected Notes (e.g. to embed YouTube videos or Tweets)
let sitePath = 'blog';
let notePath = 'api';
let { note, body } = await cn.body(sitePath, notePath);
Get the list of links that are contained in a note.
let sitePath = 'blog';
let notePath = 'api';
let format = 'json'; // or html, default is json
let links = await cn.links(sitePath, notePath, format);
The private client also comes with the read
and site
methods used to get only public data. These methods are exactly the same ones and are being returned only for convenience so you could use them as:
let { site, notes } = await cn.site('blog');
let note = await cn.site('blog', 'api', 'json');
You can generate a JSON feed for your Collected Notes site using the feed
function.
let sitePath = 'blog';
let visibility = 'public_site';
let feedOptions = {
home_page_url: 'https://example.com',
feed_url: 'https://example.com/feed.json',
};
let format = 'json'; // default is JSON
// the result is a JSONFeed object as defined in the types below
let jsonFeed = await cn.site(sitePath, visibility, feedOptions, format);
You can generate an XML (aka RSS) feed for your Collected Notes site using the feed
function.
let sitePath = 'blog';
let visibility = 'public_site';
let feedOptions = {
home_page_url: 'https://example.com',
feed_url: 'https://example.com/feed.json',
};
let format = 'xml'; // default is JSON
// the result is a string with the XML required to build a valid RSS feed
let xmlFeed = await cn.site(sitePath, visibility, feedOptions, format);
Note this function will run a call to get tha site information with the first page (only one page), the user information to get the author data and the HTML body of each note receives. In a site with 40 notes (max for one page) this will run 42 HTTP requests. Nevertheless, the first two are in parallel and the other dynamic amount are are run at the same time.
You can also import the interfaces of the values returned by the API or the webhooks.
import {
ID,
Markdown,
HTML,
XML,
URL,
Email,
ISODate,
NoteVisibility,
NoteFormat,
FeedFormat,
JSONFeed,
Note,
Site,
User,
Link,
EventNoteUpdated,
EventNoteCreated,
EventNoteDeleted,
EventNotesReordered,
EventNotesReordered,
Event,
} from 'collected-notes';
You can then use them to type any function in case TS is not capable to get the type implicitely, below you can see the definitions:
ID
— alias of numberMarkdown
— alias of stringHTML
— alias of stringXML
— alias of stringURL
— alias of stringEmail
— alias of stringISODate
— alias of stringNoteVisibility
— "private" or "public" or "public_unlisted" or "public_site"NoteFormat
— "md" or "txt" or "json"FeedFormat
— "xml" or "json"JSONFeed
— The type of a JSON feedNote
— The type of a noteSite
— The type of a siteUser
— The type of a userLink
— The type of a link inside a noteEventNoteUpdated
— The type of the note updated eventEventNoteCreated
— The type of the note created eventEventNoteDeleted
— The type of the note deleted eventEventNotesReordered
— The type of the notes reordered eventEvent
— union of other Webhook-typesFAQs
API wrapper for Collected Notes
The npm package collected-notes receives a total of 10 weekly downloads. As such, collected-notes popularity was classified as not popular.
We found that collected-notes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.