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

eos-knowledge-content

v0.0.2

Published

Node bindings for the EndlessOS knowledge content library

Downloads

1

Readme

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.