DatX is an opinionated data store. It features support for references to other models and first-class TypeScript support.
@datx/network is a datx mixin that adds a networking layer support. It can be used with any REST-like API and probably also other types of an API.
Basic usage
import { Collection, Model, Attribute } from'@datx/core';
import { BaseRequest, collection, setUrl } from'@datx/network';
classPersonextendsModel {
publicstatictype = 'person'; // Unique name of the model class@Attribute()
publicname: string; // A normal attribute without a default value@Attribute()
publicsurname: string;
@Attribute({ toOne: Person })
public spouse?: Person; // A reference to a Person modelpublicgetfullName() {
return`${this.name}${this.surname}`;
}
}
classAppDataextendsCollection {
publicstatic types = [Person]; // A list of models available in the collection
}
const store = newAppData();
// Create a base request with a basic configuration (baseUrl and linked collection)const baseRequest = newBaseRequest('https://example.com').pipe(collection(store));
// Create separate request pointsconst getPerson = baseRequest.pipe<Person>(setUrl('/people/{id}', Person));
const getPeople = baseRequest.pipe<Array<Person>>(setUrl('/people', Person));
// Pure JS loadingconst peopleResponse = await getPeople.fetch();
// Loading in a React componentconstPersonInfo = ({ userId }) => {
const [response, loading, error] = getPerson.useHook({ id: userId });
if (loading || error) {
returnnull;
}
const user = response.data;
return<div>{user.fullName}</div>;
};
Getting started
npm install --save @datx/network
Polyfilling
The lib makes use of the following features that are not yet available everywhere. Based on your browser support, you might want to polyfill them:
How to add the polyfills.
Note: Fetch API is not included in the polyfills mentioned in the Troubleshooting page. Instead, you need to add it as a separate library. If you don't have any special requirements (like server-side rendering), you can use the window.fetch polyfill.
We found that @datx/network demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.It has 7 open source maintainers collaborating on the project.
Package last updated on 29 Jun 2023
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.
Newly introduced telemetry in devenv 1.4 sparked a backlash over privacy concerns, leading to the removal of its AI-powered feature after strong community pushback.
TC39 met in Seattle and advanced 9 JavaScript proposals, including three to Stage 4, introducing new features and enhancements for a future ECMAScript release.