![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@a-la/jsx
is The JSX transform For ÀLamode And Other Packages.
yarn add -E @a-la/jsx
jsx(string: string, config: Config): string
The package is available by importing its default function:
import jsx from '@a-la/jsx'
jsx(
string: string,
config: Config,
): string
Returns the transpiled JSX code into h
pragma calls.
Config
: Options for the program.
Name | Type | Description | Default |
---|---|---|---|
quoteProps | boolean | Whether to surround property names with quotes, e.g., for the Google Closure Compiler. | false |
/* yarn example/ */
import read from '@wrote/read'
import jsx from '@a-la/jsx'
(async () => {
const code = await read('example/Component.jsx')
const res = jsx(code)
console.log(res)
})()
Given the component's source code:
import RichTextArea from 'richtext'
const Title = <title>Example</title>
export const Component = ({ align = 'right', tabs }) => {
const props = {
class: 'example',
id: 'id',
}
return <div onClick={(e) => {
e.preventDefault()
alert('Hello World')
return false
}} role="aria-button">
<Title/>
<RichTextArea />
{tabs.map((tab, i) => <span key={i}>{tab}</span>)}
<p {...props} align={align}>
Hello World!
</p>
</div>
}
The following result is achieved:
import RichTextArea from 'richtext'
const Title = h('title',{},`Example`)
export const Component = ({ align = 'right', tabs }) => {
const props = {
class: 'example',
id: 'id',
}
return h('div',{onClick:(e) => {
e.preventDefault()
alert('Hello World')
return false
},role:"aria-button"},`
`,h(Title),`
`,h(RichTextArea),`
`,tabs.map((tab, i) => h('span',{key:i},tab)),`
`,h('p',{...props,align:align},`
Hello World!
`),`
`)
}
The transform is the Reg-Exp alternative to Babel's implementation of the JSX transform. We're not aware of any other alternatives, however this approach provides a light-weight solution for transforming JSX
syntax for front-end and back-end rendering and static website generation. The lit-html is based on template strings, and does not provide html highlighting which is enabled in .jsx
files. This makes JSX the standard of modern HTML templating. The service using the JSX does not have to be a react page, so that the transform can be used to server-side rendering which will always require serving HTML using a template. To achieve this in Node.js, the ÀLaMode transpiler can be used, whereas this package just exports a single function to perform the translation of the code.
The import
and export
statements will be temporally commented out when transpiling, otherwise V8 will throw an error when trying to detect where JSX syntax starts (see the method).
This package will try to create a new Script (an import from the vm
module) to find out where JSX syntax failed (first <
). The location of the opening tag is therefore found out and the name of the tag extracted. With the name of the tag, the closing tag name can be found, and the contents inside parsed.
/Users/zavr/a-la/jsx/test/fixture/Component.jsx:2
<div className={className}>
^
SyntaxError: Unexpected token <
at createScript (vm.js:80:10)
at Object.runInThisContext (vm.js:139:10)
at Module._compile (module.js:617:28)
at Object.Module._extensions..js (module.js:664:10)
at Module.load (module.js:566:32)
at tryModuleLoad (module.js:506:12)
at Function.Module._load (module.js:498:3)
at Function.Module.runMain (module.js:694:10)
at startup (bootstrap_node.js:204:16)
at bootstrap_node.js:625:3
(c) À La Mode 2019
1.2.1
FAQs
The JSX Transform For ÀLaMode And Other Packages.
The npm package @a-la/jsx receives a total of 1 weekly downloads. As such, @a-la/jsx popularity was classified as not popular.
We found that @a-la/jsx 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.