![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
react-bind-properties
Advanced tools
Add native property bindings to React for use with custom elements
This module exports a React schema to add proprty bindings to DOM nodes in React applications. This is especially useful for working with custom elements, many of which may take complex data inputs.
This JSX pragma allows users to bind to the property on a DOM node using the bindProps
React prop. This new prop takes an object where the each key is treated as a DOM node property and each value is bound to that value. As an example, the two code snippets peform the same task the first in React and the second in Angular:
/** @jsx bindProps */
import bindProps from 'react-bind-properties'
export function MyComponent () {
const list = ['one', 'two', 'three']
return <custom-element bindProps={{ list }}></custom-element>
}
import { Component } from '@angular/core';
@Component({
template: '<custom-element [list]="list"></custom-element>'
})
export class MyComponent {
list = ['one', 'two', 'three'];
}
The recommended installation method of this package is through npm. If you are unfamiliar with the npm ecosystem, there is some great documentation available on the npm website.
If you are familiar with npm, you can install this package using the command
npm i -D react-bind-properties
Because the primary output of this package is a JSX pragma, you will first need to include the /** @jsx <PRAGMA_NAME> */
syntax in your file.
Or add pragma: "bindProps"
to your @babel/preset-react
or @babel/plugin-transform-react-jsx
babel config.
FAQs
Add native property bindings to React for use with custom elements
The npm package react-bind-properties receives a total of 1 weekly downloads. As such, react-bind-properties popularity was classified as not popular.
We found that react-bind-properties 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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.