![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@paxperscientiam/ts-models
Advanced tools
Base classes for model classes that store data in browser's localstorage.
This project provides two classes for building models with data stored in localstorage.
Definitions:
interface IStruct {
[prop: string]: string;
}
export declare class Model {
protected _id: number;
private _modelStore;
private _struct;
private _namespace;
constructor(namespace: string, struct: string[], id?: number);
private updateRegistry;
save(data: IStruct, overwrite?: boolean): void;
getItem(key: string): any;
get id(): number;
erase(): void;
dump(): any;
}
export declare class Collection {
private _modelStore;
private _namespace;
constructor(namespace: string);
total(): number;
}
# clone and cd into directory
# install dependencies
npm install
# build project and load test server
# This should open localhost:4444 in your browser
npm run example
In this example I've created a model to represent a user. When instantiating the parent class (Model
), two parameters are required: a namespace ("User"
) and the structure of model. The Model
limits saves (more on that later) to the properties specified in the structure parameter.
class User extends Model {
constructor(id?: number) {
super(
"User",
[
"firstname",
"lastname",
"username",
"age",
],
id
)
}
get fullname() {
return `${this.firstname} ${this.lastname}`
}
}
Creating a new user would be done like this:
const user = new User()
Fetching an existing user
const user = new User(userID) // userID: number
Setting properties would be done like this:
user.save([
firstname: 'Isaac',
lastname: 'Asimov',
username: 'asimov1969',
age: 33
])
The id of this new user instance can be accessed like this:
user.id // => some integer
[] expand ORM features [] undo save [x] instead of supplying an id, an id should be automatically determined [] joins
FAQs
Base classes for model classes that store data in browser's localstorage.
We found that @paxperscientiam/ts-models demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.