Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@onlabsorg/olojs
Advanced tools
olojs
is a JavaScript library for managing olo-docs, which are text documents
characterized as follows:
<%
and %>
.Let's assume that a store contains the following document at /people/mary
:
<% name: "Mary" %> is <% age: 35 %> years old.
Once evaluated, this document renders to Mary is 35 years old
and returns
the namespace {name: "Mary", age: 35}
.
Let's now assume that the same store contains also the following document,
mapped to the path /people/bob
:
<% wife = import "./mary" %>
<% name: "Bob" %> is <% age: 40 %> years old and he is married to <% wife.name %>,
who is <% wife.age %> years old. Therefore <% name %> is <% age - wife.age %>
years older than <% wife.name %>.
Notice that /people/bob
imports /people/mary
and uses its content. Once
evaluated it renders to:
Bob is 40 years old and he is married to Mary, who is 35 years old.
Therefore Bob is 5 years older than Mary.
The /people/bob
document returns the following namespace:
{
name: "Bob",
age: 40,
wife: {
name: "Mary",
age: 35
}
}
The above example gives an idea of how documents work, but to really appreciate this library, you need to consider a) that swan is a powerful expression language which, for example, can define functions and therefore parametric chunks of text and b) that stores can be shared over the internet generating a distributed network of documents.
Install olojs via npm
npm install @onlabsorg/olojs --save
Import olojs and connect to a store:
olo = require('@onlabsorg/olojs');
store = new olo.FileStore('/home/my-olodocs-store');
Document = olo.document.Document;
In this example a file-system-based store is used, but a store can be any object implementing the Store interface. olojs comes with a number of predefined stores, namely MemoryStore, FileStore, HTTPStore, a multi-store Router and a URI-based [URIStore].
Load, evaluate and render a document:
doc = await olo.document.load(store, '/path/to/doc'); // fetch the document
context = doc.createContext({pi:3.14}); // create an evaluation context
docns = await doc.evaluate(context); // evaluate the document
Serve the store via HTTP:
server = olo.HTTPServer.create(store);
server.listen(8010);
Interface to your store via HTTP:
remoteStore = new olo.HTTPStore('http://localhost:8010');
doc = await remoteStore.loadDocument('/path/to/doc');
olojs works also in the browser, although it has been tested only on Chrome and Brave. In order to use the olojs library in the browser, you should require the module
@onlabsorg/olojs/browser
. The only difference between the NodeJS version and the browser version is that the latter doesn't contain the FileStore class and the HTTPServer object and contains the BrowserStore instead.
npm run node-test
tests the library in NodeJSnpm run browser-test
tests the library in the browserFAQs
a document-based distributed content management framework
The npm package @onlabsorg/olojs receives a total of 84 weekly downloads. As such, @onlabsorg/olojs popularity was classified as not popular.
We found that @onlabsorg/olojs demonstrated a healthy version release cadence and project activity because the last version was released less than 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.