New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eos-knowledge-content

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eos-knowledge-content

Node bindings for the EndlessOS knowledge content library

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

eos-knowledge-content node bindings

Node bindings for the EndlessOS knowledge content library. With this module, you will be able to access and serve up offline content used in EndlessOS apps through nodejs, and by extension electron.

You can add this to any node project by running the following.

npm install --save eos-knowledge-content

API

For the most part, these bindings should resemble the gjs (GNOME javascript) bindings used in eos-knowledge-lib. Complete documentation of all objects and properties can be built from the eos-knowledge-content library.

Here's a quick start example running a query for 'foot' for an app with the app id 'com.endlessm.soccer.en'.

const Eknc = require('eos-knowledge-content');
Eknc.start_glib_mainloop();

let engine = Eknc.Engine.get_default();
engine.default_app_id = 'com.endlessm.soccer.en';

let query = new Eknc.QueryObject({
    query: 'foot',
    limit: 10,
    tags_match_all: ['EknArticleObject'],
});
engine.query(query).then(function (results) {
    console.log('Got results!');
    for (let result of results.get_models()) {
        console.log(result.title);
    }
}).catch(function (error) {
    console.log('Error :(');
    console.log(error);
}).then(function () {
    process.exit(0);
});

Classes

Engine

The engine is the main access point to query for content. It is generally used as a singleton, available via

Eknc.Engine.get_default()

It has two properties default_app_id and language which you will likely want to set. It provides two main functions query and get_object.

  • query(QueryObject query): takes in a QueryObject and returns a javascript promise. This promise will return a QueryResults object on a successful query.
  • get_object(String ekn_id): takes in a QueryObject and returns a javascript promise. This promise will return a ContentObjectModel on success.
QueryObject

The query object describes a query to run with Engine. These objects are immutable, and all options should be set on construction

new Eknc.QueryObject({
  query: 'hello',
});
QueryResults

You should never need to create a QueryResults object yourself, instead you will fetch on from the Engine. Its main method is get_models.

  • get_models(): Returns a list of ContentObjectModels
ContentObjectModel

You will generally not need to construct these object yourself, rather fetch them via the Engine. They are immutable and provide a lot of metadata about the contents of a article, image or set in our database. This metadata is exposed via properties.

Running the glib mainloop

The asynchronous methods exposed by Engine require glib's mainloop to be running to function properly.

Inside electron, Chromium will drive the glib mainloop internally to power its own event loop, so no extra setup is needed.

If running the library directly through nodejs, you will need to call the start_glib_mainloop function before making Engine calls.

Keywords

FAQs

Package last updated on 17 Mar 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc