Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
immutablets
Advanced tools
Designed for use with rxjs observables and Angular, but works without dependencies.
In short: If an object A equals object B, all properties of A are equal to the same property of B. Since most applications read data way more than modifying it, getting notified of changes instead of comparing values to previous values is way more efficient.
This plays nicely with angulars change detection, which compares by reference (===) and assumes that any input that receives the same value as before was not changed.
npm install immutablets
Define your application state as a class decorated with @Immutable
:
import { Immutable } from 'immutablets';
@Immutable()
class ApplicationState {
folders: { [id: number]: Folder };
files: { [id: number]: File };
currentFolder: number;
openFolder(folderId: number) {
this.currentFolder = folderId;
}
filesLoaded(folderId: number, files: File[]) {
this.folders = { ...this.folders, [folderId]: { ...this.folders[folderId], files } };
}
}
Observe the application state for changes:
@Component({
template: `
<file-list [files]="(currentFolder | async)?.files">
</file-list>`,
changeDetection: ChangeDetectionStrategy.OnPush
})
class FolderDetailsComponent {
currentFolder: Observable<Folder>;
constructor(private appState: ApplicationState) {
this.currentFolder = observeChanges(appState, Observable)
.map(state => state.folders[state.currentFolder])
.distinctUntilChanged();
}
}
Instead of forcing you to use a different data structure to store your data, you will be encouraged to write mutation-safe code with plain javascript objects and arrays.
If any method call changes properties of an existing reference instead of creating a new object, a MethodNonImmutableError will be thrown:
@Immutable()
class BadFolderListImplementation {
private folders: Folder[];
add(newFolder: Folder) {
this.folders.push(newFolder);
// ^ push changes the array, therefore
// a MethodNonImmutableError is thrown.
}
}
When the method creates a new object instead of changing an existing one, no error is thrown:
add(newFolder: Folder) {
this.folders = [...this.folders, newFolder];
}
(work in progress)
FAQs
Immutable state management for TypeScript
We found that immutablets 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.