Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Composition-api in Vanilla js
Vue.js introduced an amazing pattern called Composition API that allows organizing complex logic by spliting it into reusable functions and grouping in logical order. unctx
allows easily implementing composition api pattern in your javascript libraries without hassle.
In you awesome library:
yarn add unctx
# or
npm install unctx
import { createContext } from 'unctx'
const ctx = createContext()
export const useAwesome = ctx.use
// ...
ctx.call({ test: 1 }, () => {
// This is similar to vue setup function
// Any function called here, can use `useAwesome` to get { test: 1 }
})
User code:
import { useAwesome } from 'awesome-lib'
// ...
function setup() {
const ctx = useAwesome()
}
Composition of functions is possible using temporary context injection. Under the hood a temporary singleton variable is kept (per context)
To avoid issues with multiple instances of library, unctx
provides a safe global namespace to access contexts with (kept in globalThis
)
Important: Please use a verbose name for key to avoid conflict with other js libraries. Using npm package name is recommended.
import { useContext } from 'unctx'
const { use: useAwesome, call } = useContext('awesome-lib')
You can also create your own internal namespace with createNamespace
utility for more advanced usecases.
A generic type exists on all utilities to be set for instance/context type:
// Return type of useAwesome is Awesome | null
const { use: useAwesome } = createContext<Awesome>()
context can be only used before first await:
To avoid leaking context, call
method synchronously sets context and unsets it as soon as possible. Because of this, useAwesome
should happen before first await
call and reused if necessary.
async function setup() {
const awesome = useAwesome()
await someFunction()
// useAwesome() returns null here
}
Context conflict
error:
In your library, you should only keep one call()
running at a time (unless calling with same reference for first argument)
For instance this makes an error:
ctx.call({ test: 1 }, () => {
ctx.call({ test: 2 }, () => {
// Throws error!
})
})
MIT. Made with 💖
FAQs
Composition-api in Vanilla js
We found that unctx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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.