Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@furystack/core
Advanced tools
Core package for FuryStack with some generic type and interface definitions and concepts
In FuryStack, the preferred mode of accessing data is via physical stores. A physical store is a bare minimum interface that a store should do. A store is always bound to a collection with a specified type of entities. It can only do the basic CRUD operations (create, get by Id, filter, delete, count). These stores should not have a concept about relations, indexes and other storage-specific stuff. Data stores doesn't care about permission, role or session checking.
The generic way to implement authentication and authorization logic is an Identity Context - You can use it on both backend and frontend
...yo...
Global Disposables is a list that you can fill with disposables that will be disposed on app exit - this helps graceful app shutdowns.
import { globalDisposables } from '@furystack/core/dist/create-physical-store-tests'
globalDisposables.add(myRootInjector)
There is a set of generic store test that you can use to test your custom store implementation as the following example shows:
import { TestClass, createStoreTest } from '@furystack/core/dist/create-physical-store-tests'
describe('myStore', ()=>{
createStoreTest({
createStore: () => new MyStoreImplementation(TestClass, ...ctorArgs),
typeName: 'MyStoreImplementation',
})
})
FAQs
Core FuryStack package
The npm package @furystack/core receives a total of 7 weekly downloads. As such, @furystack/core popularity was classified as not popular.
We found that @furystack/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.