Update links to ldo.js.org

main
Jackson Morgan 6 months ago
parent a913d577de
commit fea6aaad74
  1. 6
      packages/cli/README.md
  2. 2
      packages/jsonld-dataset-proxy/README.md
  3. 38
      packages/ldo/README.md
  4. 22
      packages/solid-react/README.md
  5. 28
      packages/solid/README.md

@ -68,9 +68,9 @@ npx @ldo/cli create ./my-project
This script will generate a project with a place to put your shapes. Running `npm publish` will build the shapes and push to project to NPM for you. This script will generate a project with a place to put your shapes. Running `npm publish` will build the shapes and push to project to NPM for you.
## API Details ## API Details
- [`init` command](https://ldo.js.org/api/cli/init/) - [`init` command](https://ldo.js.org/latest/api/cli/init/)
- [`build` command](https://ldo.js.org/api/cli/build/) - [`build` command](https://ldo.js.org/latest/api/cli/build/)
- [`create` command](https://ldo.js.org/api/cli/create/) - [`create` command](https://ldo.js.org/latest/api/cli/create/)
## Sponsorship ## Sponsorship

@ -132,7 +132,7 @@ start();
For the most part, you can think of a JSONLD Dataset Proxy as a JavaScript Object Literal with "Sets" instead of arrays. For the most part, you can think of a JSONLD Dataset Proxy as a JavaScript Object Literal with "Sets" instead of arrays.
### Defining a Context and Type ### Defining a Context and Type
The first step to getting a JSONLD Dataset Proxy is defining the JSONLD Context and TypeScript Typings. This can either be done through a [generator](https://ldo.js.org/api/cli/build/) or defining them manually. The first step to getting a JSONLD Dataset Proxy is defining the JSONLD Context and TypeScript Typings. This can either be done through a [generator](https://ldo.js.org/latest/api/cli/build/) or defining them manually.
In this example typescript typing `IPerson` is an interface that represents a person. Notice the `@id` and `@context` fields. Be sure to include them in your interfaces if you wish to use those properties. In this example typescript typing `IPerson` is an interface that represents a person. Notice the `@id` and `@context` fields. Be sure to include them in your interfaces if you wish to use those properties.

@ -4,7 +4,7 @@
## Guide ## Guide
A full walkthrough for using the `@ldo/ldo` library can be found in the [For RDF Usage Guide](https://ldo.js.org/raw_rdf/). A full walkthrough for using the `@ldo/ldo` library can be found in the [For RDF Usage Guide](https://ldo.js.org/latest/raw_rdf/).
## Installation ## Installation
@ -122,45 +122,45 @@ run();
Types Types
- [`LdoBase`](https://ldo.js.org/api/ldo/LdoBase/) - [`LdoBase`](https://ldo.js.org/latest/api/ldo/LdoBase/)
- [`ShapeType`](https://ldo.js.org/api/ldo/ShapeType/) - [`ShapeType`](https://ldo.js.org/latest/api/ldo/ShapeType/)
Getting an LdoDataset Getting an LdoDataset
- [`parseRdf`](https://ldo.js.org/api/ldo/parseRdf/) - [`parseRdf`](https://ldo.js.org/latest/api/ldo/parseRdf/)
- [`createLdoDatasetFactory`](https://ldo.js.org/api/ldo/createLdoDatasetFactory/) - [`createLdoDatasetFactory`](https://ldo.js.org/latest/api/ldo/createLdoDatasetFactory/)
- [`LdoDatasetFactory`](https://ldo.js.org/api/ldo/LdoDatasetFactory/) - [`LdoDatasetFactory`](https://ldo.js.org/latest/api/ldo/LdoDatasetFactory/)
- [`createLdoDataset`](https://ldo.js.org/api/ldo/createLdoDataset/) - [`createLdoDataset`](https://ldo.js.org/latest/api/ldo/createLdoDataset/)
- [`LdoDataset`](https://ldo.js.org/api/ldo/LdoDataset/) - [`LdoDataset`](https://ldo.js.org/latest/api/ldo/LdoDataset/)
Getting a Linked Data Object Getting a Linked Data Object
- [`LdoBuilder`](https://ldo.js.org/api/ldo/LdoBuilder/) - [`LdoBuilder`](https://ldo.js.org/latest/api/ldo/LdoBuilder/)
Converting a Linked Data Object to Raw RDF Converting a Linked Data Object to Raw RDF
- [`toTurtle`](https://ldo.js.org/api/ldo/toTurtle/) - [`toTurtle`](https://ldo.js.org/latest/api/ldo/toTurtle/)
- [`toNTriples`](https://ldo.js.org/api/ldo/toNTriples/) - [`toNTriples`](https://ldo.js.org/latest/api/ldo/toNTriples/)
- [`serialize`](https://ldo.js.org/api/ldo/serialize/) - [`serialize`](https://ldo.js.org/latest/api/ldo/serialize/)
Transactions Transactions
- [transactions](https://ldo.js.org/api/ldo/transactions/) - [transactions](https://ldo.js.org/latest/api/ldo/transactions/)
- [`toSparqlUpdate`](https://ldo.js.org/api/ldo/toSparqlUpdate/) - [`toSparqlUpdate`](https://ldo.js.org/latest/api/ldo/toSparqlUpdate/)
Language Tag Support Language Tag Support
- [`languageOf`](https://ldo.js.org/api/ldo/languageOf/) - [`languageOf`](https://ldo.js.org/latest/api/ldo/languageOf/)
- [`setLanguagePreferences`](https://ldo.js.org/api/ldo/setLanguagePreferences/) - [`setLanguagePreferences`](https://ldo.js.org/latest/api/ldo/setLanguagePreferences/)
Graph Support Graph Support
- [`graphOf`](https://ldo.js.org/api/ldo/graphOf/) - [`graphOf`](https://ldo.js.org/latest/api/ldo/graphOf/)
- [`write`](https://ldo.js.org/api/ldo/write/) - [`write`](https://ldo.js.org/latest/api/ldo/write/)
Other Helper Functions Other Helper Functions
- [`getDataset`](https://ldo.js.org/api/ldo/getDataset/) - [`getDataset`](https://ldo.js.org/latest/api/ldo/getDataset/)
## Sponsorship ## Sponsorship
This project was made possible by a grant from NGI Zero Entrust via nlnet. Learn more on the [NLnet project page](https://nlnet.nl/project/SolidUsableApps/). This project was made possible by a grant from NGI Zero Entrust via nlnet. Learn more on the [NLnet project page](https://nlnet.nl/project/SolidUsableApps/).

@ -4,7 +4,7 @@
## Guide ## Guide
A full walkthrough for using the `@ldo/solid` library can be found in the [For Solid + React Guide](https://ldo.js.org/guides/solid_react/) A full walkthrough for using the `@ldo/solid` library can be found in the [For Solid + React Guide](https://ldo.js.org/latest/guides/solid_react/)
## Installation ## Installation
@ -115,18 +115,18 @@ export default App;
Providers Providers
- [BrowserSolidLdoProvider](https://ldo.js.org/api/solid-react/BrowserSolidLdoProvider/) - [BrowserSolidLdoProvider](https://ldo.js.org/latest/api/solid-react/BrowserSolidLdoProvider/)
- [SolidLdoProvider](https://ldo.js.org/api/solid-react/SolidLdoProvider/) - [SolidLdoProvider](https://ldo.js.org/latest/api/solid-react/SolidLdoProvider/)
Hooks Hooks
- [useLdo](https://ldo.js.org/api/solid-react/useLdo/) - [useLdo](https://ldo.js.org/latest/api/solid-react/useLdo/)
- [useResource](https://ldo.js.org/api/solid-react/useResource/) - [useResource](https://ldo.js.org/latest/api/solid-react/useResource/)
- [useRootContainer](https://ldo.js.org/api/solid-react/useRootContainer/) - [useRootContainer](https://ldo.js.org/latest/api/solid-react/useRootContainer/)
- [useSolidAuth](https://ldo.js.org/api/solid-react/useSolidAuth/) - [useSolidAuth](https://ldo.js.org/latest/api/solid-react/useSolidAuth/)
- [useSubject](https://ldo.js.org/api/solid-react/useSubject/) - [useSubject](https://ldo.js.org/latest/api/solid-react/useSubject/)
- [useMatchSubject](https://ldo.js.org/api/solid-react/useMatchSubject/) - [useMatchSubject](https://ldo.js.org/latest/api/solid-react/useMatchSubject/)
- [useMatchObject](https://ldo.js.org/api/solid-react/useMatchSubject/) - [useMatchObject](https://ldo.js.org/latest/api/solid-react/useMatchSubject/)
- [useSubscribeToResource](https://ldo.js.org/api/solid-react/useMatchSubject/) - [useSubscribeToResource](https://ldo.js.org/latest/api/solid-react/useMatchSubject/)
## Sponsorship ## Sponsorship
This project was made possible by a grant from NGI Zero Entrust via nlnet. Learn more on the [NLnet project page](https://nlnet.nl/project/SolidUsableApps/). This project was made possible by a grant from NGI Zero Entrust via nlnet. Learn more on the [NLnet project page](https://nlnet.nl/project/SolidUsableApps/).

@ -205,28 +205,28 @@ main();
SolidLdoDataset SolidLdoDataset
- [createSolidLdoDataset](https://ldo.js.org/api/solid/functions/createSolidLdoDataset/) - [createSolidLdoDataset](https://ldo.js.org/latest/api/solid/functions/createSolidLdoDataset/)
- [SolidLdoDataset](https://ldo.js.org/api/solid/classes/SolidLdoDataset/) - [SolidLdoDataset](https://ldo.js.org/latest/api/solid/classes/SolidLdoDataset/)
Resources (Manage batching requests) Resources (Manage batching requests)
- [LeafUri](https://ldo.js.org/api/solid/types/LeafUri/) - [LeafUri](https://ldo.js.org/latest/api/solid/types/LeafUri/)
- [ContainerUri](https://ldo.js.org/api/solid/types/ContainerUri/) - [ContainerUri](https://ldo.js.org/latest/api/solid/types/ContainerUri/)
- [Leaf](https://ldo.js.org/api/solid/classes/Leaf/) - [Leaf](https://ldo.js.org/latest/api/solid/classes/Leaf/)
- [Container](https://ldo.js.org/api/solid/classes/Container/) - [Container](https://ldo.js.org/latest/api/solid/classes/Container/)
Standalone Functions Standalone Functions
- [checkRootContainter](https://ldo.js.org/api/solid/functions/checkRootContainer/) - [checkRootContainter](https://ldo.js.org/latest/api/solid/functions/checkRootContainer/)
- [createDataResource](https://ldo.js.org/api/solid/functions/createDataResource/) - [createDataResource](https://ldo.js.org/latest/api/solid/functions/createDataResource/)
- [deleteResource](https://ldo.js.org/api/solid/functions/deleteResource/) - [deleteResource](https://ldo.js.org/latest/api/solid/functions/deleteResource/)
- [readResource](https://ldo.js.org/api/solid/functions/readResource/) - [readResource](https://ldo.js.org/latest/api/solid/functions/readResource/)
- [updateResource](https://ldo.js.org/api/solid/functions/updateResource/) - [updateResource](https://ldo.js.org/latest/api/solid/functions/updateResource/)
- [uploadResource](https://ldo.js.org/api/solid/functions/uploadResource/) - [uploadResource](https://ldo.js.org/latest/api/solid/functions/uploadResource/)
Data Functions Data Functions
- [changeData](https://ldo.js.org/api/solid/functions/changeData/) - [changeData](https://ldo.js.org/latest/api/solid/functions/changeData/)
- [commitData](https://ldo.js.org/api/solid/functions/commitData/) - [commitData](https://ldo.js.org/latest/api/solid/functions/commitData/)
## Sponsorship ## Sponsorship
This project was made possible by a grant from NGI Zero Entrust via nlnet. Learn more on the [NLnet project page](https://nlnet.nl/project/SolidUsableApps/). This project was made possible by a grant from NGI Zero Entrust via nlnet. Learn more on the [NLnet project page](https://nlnet.nl/project/SolidUsableApps/).

Loading…
Cancel
Save