Skip to content

Commit

Permalink
Move repo to rdfjs organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenVerborgh committed Apr 23, 2018
1 parent 570f40f commit 1ec523d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions README.md
@@ -1,6 +1,6 @@
# Lightning fast, asynchronous, streaming RDF for JavaScript
[![Build Status](https://travis-ci.org/RubenVerborgh/N3.js.svg?branch=master)](https://travis-ci.org/RubenVerborgh/N3.js)
[![Coverage Status](https://coveralls.io/repos/github/RubenVerborgh/N3.js/badge.svg)](https://coveralls.io/github/RubenVerborgh/N3.js)
[![Build Status](https://travis-ci.org/rdfjs/N3.js.svg?branch=master)](https://travis-ci.org/rdfjs/N3.js)
[![Coverage Status](https://coveralls.io/repos/github/rdfjs/N3.js/badge.svg)](https://coveralls.io/github/rdfjs/N3.js)
[![npm version](https://badge.fury.io/js/n3.svg)](https://www.npmjs.com/package/n3)
[![DOI](https://zenodo.org/badge/3058202.svg)](https://zenodo.org/badge/latestdoi/3058202)

Expand All @@ -23,7 +23,7 @@ It offers:
Parsing and writing is:
- **asynchronous** – triples arrive as soon as possible
- **streaming** – streams are parsed as data comes in, so you can parse files larger than memory
- **fast** – by far the [fastest spec-compatible parser in JavaScript](https://github.com/RubenVerborgh/N3.js/tree/master/perf)
- **fast** – by far the [fastest spec-compatible parser in JavaScript](https://github.com/rdfjs/N3.js/tree/master/perf)

## Installation
For Node.js, N3.js comes as an [npm package](https://npmjs.org/package/n3).
Expand Down Expand Up @@ -268,7 +268,7 @@ console.log(mickey);

### Addition and deletion of quads
The store provides the following manipulation methods
([documentation](http://rubenverborgh.github.io/N3.js/docs/N3Store.html)):
([documentation](http://rdfjs.github.io/N3.js/docs/N3Store.html)):
- `addQuad` to insert one quad
- `addQuads` to insert an array of quads
- `removeQuad` to remove one quad
Expand All @@ -277,7 +277,7 @@ The store provides the following manipulation methods

### Searching quads or entities
The store provides the following search methods
([documentation](http://rubenverborgh.github.io/N3.js/docs/N3Store.html)):
([documentation](http://rdfjs.github.io/N3.js/docs/N3Store.html)):
- `getQuads` returns an array of quads matching the given pattern
- `countQuads` counts the number of quads matching the given pattern
- `forEach` executes a callback on all matching quads
Expand All @@ -296,13 +296,13 @@ The store provides the following search methods
### Format specifications
The N3.js parser and writer is fully compatible with the following W3C specifications:
- [RDF 1.1 Turtle](https://www.w3.org/TR/turtle/)
[EARL report](https://raw.githubusercontent.com/RubenVerborgh/N3.js/earl/n3js-earl-report-turtle.ttl)
[EARL report](https://raw.githubusercontent.com/rdfjs/N3.js/earl/n3js-earl-report-turtle.ttl)
- [RDF 1.1 TriG](https://www.w3.org/TR/trig/)
[EARL report](https://raw.githubusercontent.com/RubenVerborgh/N3.js/earl/n3js-earl-report-trig.ttl)
[EARL report](https://raw.githubusercontent.com/rdfjs/N3.js/earl/n3js-earl-report-trig.ttl)
- [RDF 1.1 N-Triples](https://www.w3.org/TR/n-triples/)
[EARL report](https://raw.githubusercontent.com/RubenVerborgh/N3.js/earl/n3js-earl-report-ntriples.ttl)
[EARL report](https://raw.githubusercontent.com/rdfjs/N3.js/earl/n3js-earl-report-ntriples.ttl)
- [RDF 1.1 N-Quads](https://www.w3.org/TR/n-quads/)
[EARL report](https://raw.githubusercontent.com/RubenVerborgh/N3.js/earl/n3js-earl-report-nquads.ttl)
[EARL report](https://raw.githubusercontent.com/rdfjs/N3.js/earl/n3js-earl-report-nquads.ttl)

In addition, the N3.js parser also supports [Notation3 (N3)](https://www.w3.org/TeamSubmission/n3/) (no official specification yet).

Expand Down Expand Up @@ -338,7 +338,7 @@ The N3.js submodules are compatible with the following [RDF.js](http://rdf.js.or

## License and contributions
The N3.js library is copyrighted by [Ruben Verborgh](https://ruben.verborgh.org/)
and released under the [MIT License](https://github.com/RubenVerborgh/N3.js/blob/master/LICENSE.md).
and released under the [MIT License](https://github.com/rdfjs/N3.js/blob/master/LICENSE.md).

Contributions are welcome, and bug reports or pull requests are always helpful.
If you plan to implement a larger feature, it's best to contact me first.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -42,10 +42,10 @@
},
"repository": {
"type": "git",
"url": "https://github.com/RubenVerborgh/N3.js.git"
"url": "https://github.com/rdfjs/N3.js.git"
},
"bugs": {
"url": "https://github.com/RubenVerborgh/N3.js/issues"
"url": "https://github.com/rdfjs/N3.js/issues"
},
"pre-commit": [
"lint",
Expand Down
2 changes: 1 addition & 1 deletion spec/SpecTester.js
Expand Up @@ -243,7 +243,7 @@ SpecTester.prototype._generateEarlReport = function (tests, callback) {
var reportFile = path.join(this._reportFolder, 'n3js-earl-report-' + this._name + '.ttl'),
report = new N3.Writer(fs.createWriteStream(reportFile), { prefixes: prefixes }),
date = '"' + new Date().toISOString() + '"^^' + prefixes.xsd + 'dateTime',
homepage = 'https://github.com/RubenVerborgh/N3.js', app = homepage + '#n3js',
homepage = 'https://github.com/rdfjs/N3.js', app = homepage + '#n3js',
developer = 'https://ruben.verborgh.org/profile/#me', manifest = this._manifest + '#';

report.addPrefix('manifest', manifest);
Expand Down

0 comments on commit 1ec523d

Please sign in to comment.