Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@crossroad/registry
Advanced tools
import { createExtension } from '@crossroad/client'
createExtension({
// Target a @crossroad API server:
endpoint: 'http://crossroad-server.com',
token: 'extension-secret-token',
// Describe your extension:
name: 'Foo',
secret: 'xxx',
// Variables can be used in the definition as first class placeholders
variables: [
{ name: 'var1', value: 'xxx' },
{ name: 'var2', value: 'yyy' },
],
// Headers are prepended to each endpoint definition, value can use variables
variables: [
{ name: 'x-foo', value: 'var1' },
{ name: 'x-aaa', value: '{{ var1 }}/{{ var2 }}' },
],
// Extension definition as in @marcopeg/graphql-extension
definition: { ... },
})
Used by @crossroad to generate a meta.signature
token that can be verified by the client.
You can then protect your routes with extension.createMiddleware()
Every item that you define into variables
will be available for templating in the rest of
the definition, along with the values that are provided by the @crossroad
server at evaluation time.
import { runQuery } from '@crossroad/client'
runQuery({
query: 'query foo (@name: String!) { Ext1 { name(name:$name) }}',
variables: { name: 'foo' },
endpoint: 'http://crossroad-server.com',
headers: {
'x-grapi-origin': 'client token'
},
})
Custom error utility that play nicely with an Express error handler.
(to be completed)
FAQs
Store GraphQL extensions definitions into Postgres
We found that @crossroad/registry 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.