![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.
structured-field-values
Advanced tools
Implementation of Structured Field Values from IETF httpbis RFC8941
This is a implementation of a RFC 8941: Structured Field Values for HTTP in JavaScript.
And also Date type in sfbis-02 is also supported.
npm install structured-field-values
SFV has string and token and this module use Symbol for token.
And SFV has params for every item, so decoded token are always object with value
& params
.
decodeItem(`a`) // Item { value: Symbol(a), params: null }
decodeItem(`"a"`) // Item { value: `a`, params: null }
decodeItem(`10`) // Item { value: 10, params: null }
decodeItem(`3.14`) // Item { value: 3.14, params: null }
decodeItem(`?0`) // Item { value: false, params: null }
decodeItem(`@1659578233`)
// Item { value: new Date(`2022-08-04T01:57:13.000Z`), params: null }
decodeItem(`"a";x;y=?0;z=10`)
// Item { value: `a`, params: { x: true, y: false, z: 10 } }
Note: Symbol generated in decoder is registered globally as Shared Symbol, so you can handle them like.
const a = decodeItem(`a`).value // Symbol(a)
console.log(Symbol.keyFor(a)) // "a" (string)
encodeItem(Symbol.for('a')) // `a`
encodeItem("a") // `"a"`
encodeItem(10) // `10`
encodeItem(3.14) // `3.14`
encodeItem(true) // `?0`
encodeItem(new Item(Symbol.for('a'))) // `a`
encodeItem(new Item("a")) // `"a"`
encodeItem(new Item(10)) // `10`
encodeItem(new Item(3.14)) // `3.14`
encodeItem(new Item(true)) // `?0`
encodeItem(new Item(new Date(1659578233000))) // 2022-08-04T01:57:13.000Z
encodeItem(new Item(`a`, { x: true, y: false, z: 10 })) // `"a";x;y=?0;z=10`
Note: JavaScript only supports number
encodeItem(decodeItem('1.0')) // '1' not '1.0'
decodeList(`1,2,3`)
// [
// Item { value: 1, params: null },
// Item { value: 2, params: null },
// Item { value: 3, params: null }
// ]
decodeList(`a;x,"b";y=?0,10,(1 2)`)
// [
// Item { value: Symbol(a), params: { x: true } },
// Item { value: `b`, params: { y: false } },
// Item { value: 10, params: null },
// Item { value: [
// { value: 1, params: null }
// { value: 2, params: null }
// ], params: null }
// ]
// `1, 2, 3`
encodeList([1,2,3])
encodeList([
new Item(1),
new Item(2),
new Item(3)
])
// `a;x, "b";y=?0, 10, (1 2)`
encodeList([
new Item(Symbol.for('a'), { x: true }),
new Item(`b`, { y: false }),
new Item(10),
new Item([1, 2])
])
decodeDict(`a=x, b="y", c=10, d=?0, e=(1 2)`)
// {
// a: Item { value: Symbol(x), params: null },
// b: Item { value: 'y', params: null },
// c: Item { value: 10, params: null },
// d: Item { value: false, params: null },
// e: Item { value: [
// Item { value: 1, params: null }
// Item { value: 2, params: null }
// ], params: null }
// }
// `a=10, b=20, c=30`
encodeDict({
a: 10,
b: 20,
c: 30,
})
// `a=10, b=20, c=30`
encodeDict(new Map([
['a', 10],
['b', 20],
['c', 30],
])
),
// `a=x, b="y", c=10, d=?0, e=:AQID:, f=(10 20)`
encodeDict({
a: Symbol.for('x'),
b: 'y',
c: 10,
d: false,
e: new Uint8Array([1,2,3]),
f: [10, 20],
})
// `a=x;a, b="y";b=10, c=10;c="test", d=?0, e=(1 2)`
encodeDict({
a: new Item(Symbol.for('x'), {a: true}),
b: new Item('y', {b: 10}),
c: new Item(10, {c: "test"}),
d: new Item(false),
e: new Item([1, 2]),
})
// `a=1, b=?0, c="x", d=y, e=:AQID:`
encodeDict(new Map([
['a', 10],
['b', 20],
['c', 30],
])),
test includes unittest & httpwg's test.
you can run all test like below.
$ git submodule init && git submodule update
$ npm t
FAQs
Implementation of Structured Field Values from IETF httpbis RFC8941
The npm package structured-field-values receives a total of 0 weekly downloads. As such, structured-field-values popularity was classified as not popular.
We found that structured-field-values demonstrated a healthy version release cadence and project activity because the last version was released less than 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.