1.1.25 • Published 6 years ago

memex-js-sdk v1.1.25

Weekly downloads
3
License
UNLICENSED
Repository
github
Last release
6 years ago

Memex JavaScript SDK

What is Memex?

Memex is lightweight personal knowladge base with automatic content management. It means that it helps organise every piece of knowledge (notes, urls, sketches, comments, etc.). These pieces (spaces) are interconnected using memory links which helps to navigate and associate it into more compact knowledge. It is just like web but more lightweight and only personal.

Space

Core concept of Memex is space which is bundle/collection/folder of small pieces of knowledge. It can be piece of text (text space) note or large collection of links to other collections (collection space).

There is a few standard space types in two core categories:

  1. Collection-oriented - defined/represented by its caption
    • Collection - abstract set of links to other spaces
  2. Atomic (shortly atoms) - defined/represented by caption and linked media
    • WebPage - decorated URL to any webpage
    • Text - small textual piece of information/note or anything that can be written
    • Image - visual piece of knowledge

Space has wollowing structure:

class Space {
  MUID: ?string;
  spaceType: SpaceType;
  caption: ?string;
  representations: ?Array<Media>;
  color: ?string;
  state: EntityState;
}

Link

Another core principle of memex is link which is nothing more than connection between two spaces. So if there exists association between two things/ideas/spaces in users brain there should be also oriented link in memex.

class Link {
  MUID: ?string;
  origin: Space;
  target: Space;
  state: EntityState;
}

Media

Piece of data that can be users avatar or image/textual representation of space.

class Media {
  MUID: ?string;
  state: EntityState;
  mediaType: MediaType;
  embedData: ?ArrayBuffer;
  dataDownloadURL: ?string;
  dataUploadURL: ?string;
  dataState: MediaDataState;
  representsSpace: ?Space;
}

Smart Fetaures

Today memex supports two smart features that will help user to automatically manage his content.

Auto-Categorization (Autodump)

First one is called autodump and will automatically link new space with most fitting already existing space. Eg. If user drops webpage url and there already exists similar collection of spaces then Memex will try to automatically create link from this collection to newly created space. See Examples section.

Auto-Captioning

Are you creating collection of spaces but dont know how to name it?Another smart feature that is offered by Memex is automatic captioning/summarization of space. Just provide set of space MUIDs and we will tell you what is the best name for it.

Setup

1. Create app and get your app token

Go to Memex Dev Center and create your app. You dont need to wait for approval and continue to step 2.

2. Add memex-js-sdk module to your NPM package.json

Go to root directory of your app and run this command in Terminal.

npm install memex-js-sdk --save

3. Import module

Import memex sdk into every JavaScript file where you want to use it.

import Memex from 'memex-js-sdk';

4. Configure SDK with app token

In your app.js or any place where you bootstrap your libraries place this line.

Memex.sharedClient.setAppToken('<YOUR APP TOKEN>');

Examples

Authentication

Only supported user authentication method in JS sdk is using clients credentials (email & password).

import Memex from 'memex-js-sdk';

// ...

Memex.sharedClient.login(email, password, (token: ?string, success: bool) => {
  if (success === false) {
	 // failure
    return;
  }
  // success
});

Get origin/space

If you want get users origin space or any other space use its MUID (memex unique identifier).

Memex.sharedClient.getSpace(this.props.originMuid, (space: ?Memex.Space, success: bool) => {
  if (success === false || space == null) {
  	 // something wrong happened
    return;
  }
  // start using space object
});

Get links

Memex.sharedClient.getSpaceLinks(muid, (links: ?Array<Memex.Link>, success: bool) => {
  if (success === false) {
    // failure
  	return;
  }
  // success, show links to user
});

Create space

If you want to create new space in users memex you can use one of following three options for webpage space, textual space or image space.

Memex.sharedClient.createWebPageSpace(url, true, completion);
Memex.sharedClient.createTextSpace(text, true, completion);
Memex.sharedClient.createImageSpace(imageURL, true, completion);

Or you can create any other space.

let space = new Space();
space.caption = ...
space.representations = ...
Memex.sharedClient.createSpace(space, false, completion);

Documentation

Each function of SDK is documented using JSDoc. See generated documentation.

Other Platform APIs

Contact Us

If you need any other help please contact us at hello@memex.co

1.1.25

6 years ago

1.1.24

6 years ago

1.1.23

6 years ago

1.1.22

6 years ago

1.1.21

6 years ago

1.1.20

6 years ago

1.1.19

7 years ago

1.1.18

7 years ago

1.1.17

7 years ago

1.1.16

7 years ago

1.1.15

7 years ago

1.1.14

7 years ago

1.1.13

7 years ago

1.1.12

7 years ago

1.1.11

7 years ago

1.1.10

7 years ago

1.1.9

7 years ago

1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago