JSPM

file-concept-network

0.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q27327F

ConceptNetwork with file persistance.

Package Exports

  • file-concept-network

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (file-concept-network) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

file-concept-network Build Status NPM version

Concept Network is weighted directed graph, in which activation values are propagated. Written in Node.js.

File Concept Network is the version with file system persistence.

Getting Started

Install the module with: npm install file-concept-network

var FileConceptNetwork = require('file-concept-network').FileConceptNetwork;
var fcn = new FileConceptNetwork();
var node1 = fcn.addNode("ECTOR");
var node2 = fcn.addNode("knows");
var node3 = fcn.addNode("Achille");
fcn.addLink(node1.id, node2.id);
fcn.addLink(node2.id, node3.id);
fcn.save('cn.json', function (err) {
  if (err) {
    console.error(err);
  }
});

Documentation

(Coming soon)

Examples

(Coming soon)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint, and test your code using mocha.

Release History

  • 2014/08/07: version 0.1.2: treat error cases
  • 2013/01/25: version 0.1.1: fix npm module
  • 2013/01/19: version 0.1.0

License

Copyright (c) 2013 François Parmentier Licensed under the MIT license.