Core business logic of SolidOS which can be used for any webapp as well.
npm install solid-logic rdflibImportant:
rdflibis a peer dependency - you must install it separately.
import{solidLogicSingleton,store,authn}from'solid-logic';// Example usageconsole.log('Current user:',authn.currentUser());Both UMD and ESM bundles externalize rdflib to keep bundle sizes small and avoid version conflicts.
| Format | File | Usage | Global Variable |
|---|---|---|---|
| UMD | dist/solid-logic.js | Development | window.SolidLogic |
| UMD | dist/solid-logic.min.js | Production | window.SolidLogic |
| ESM | dist/solid-logic.esm.js | Development | Import only |
| ESM | dist/solid-logic.esm.min.js | Production | Import only |
$rdf is not defined errors.
<!-- 1. Load rdflib first (creates window.$rdf) --><scriptsrc="https://cdn.jsdelivr.net/npm/rdflib/dist/rdflib.min.js"></script><!-- 2. Load solid-logic (expects $rdf to exist) --><scriptsrc="https://unpkg.com/solid-logic/dist/solid-logic.min.js"></script><script>// Access via global variableconst{ solidLogicSingleton, store, authn }=window.SolidLogic;// Example usageconsole.log('Store:',store);console.log('Authentication:',authn.currentUser());</script><scripttype="module">import*as$rdffrom'https://esm.sh/rdflib';import{solidLogicSingleton,store,authn}from'https://esm.sh/solid-logic@4.0.1';// Example usageconsole.log('Store:',store);console.log('Authentication:',authn.currentUser());</script><scripttype="importmap">{"imports": {"rdflib": "https://esm.sh/rdflib","solid-logic": "https://esm.sh/solid-logic@4.0.1"}}</script><scripttype="module">import*as$rdffrom'rdflib';import{solidLogicSingleton,store,authn}from'solid-logic';// Example usage - cleaner imports!console.log('Store:',store);console.log('Authentication:',authn.currentUser());</script>import{solidLogicSingleton,// Complete singleton instancestore,// RDF storeauthn,// Authentication logicauthSession,// Authentication sessionACL_LINK,// ACL constantsgetSuggestedIssuers,// Identity provider suggestionscreateTypeIndexLogic,// Type index functionality// Error classesUnauthorizedError,NotFoundError,FetchError}from'solid-logic';Check the scripts in the package.json for build, watch, lint and test.
- TypeScript + Babel
- Jest
- ESLint
- Webpack
Change version and push directly to main. This will trigger the npm release latest script in CI.
Solid-logic was a move to separate business logic from UI functionality so that people using different UI frameworks could use logic code.
It was created when the "chat with me" feature was built. We needed to share logic between chat-pane and profile-pane (which was part of solid-panes back then I think) due to that feature. The whole idea of it is to separate core solid logic from UI components, to make logic reusable, e.g. by other UI libraries or even non web apps like CLI tools etc.