Security News
JavaScript Leaders Demand Oracle Release the JavaScript Trademark
In an open letter, JavaScript community leaders urge Oracle to give up the JavaScript trademark, arguing that it has been effectively abandoned through nonuse.
react-image-upload
Advanced tools
React package for uploading images.
npm install --save react-image-upload
import ImageUploader from 'react-image-upload'
import 'react-image-upload/dist/index.css'
const App = () => {
function getImageFileObject(imageFile) {
console.log({ onAdd: imageFile })
}
function runAfterImageDelete(file) {
console.log({ onDele: file })
}
return (
<div className='_dFlex'>
{/* example one */}
<div className='_m4'>
<ImageUploader
onFileAdded={(img) => getImageFileObject(img)}
onFileRemoved={(img) => runAfterImageDelete(img)}
height={200}
width={300}
/>
</div>
{/* example 2 */}
<div className='_m4'>
<ImageUploader
onFileAdded={(img) => getImageFileObject(img)}
onFileRemoved={(img) => runAfterImageDelete(img)}
uploadElement={
<div>
<svg
class='svg-circleplus'
viewBox='0 0 100 100'
style={{ height: '20px', stroke: 'green' }}
>
<circle
cx='50'
cy='50'
r='45'
fill='none'
strokeWidth='7.5'
></circle>
<line
x1='32.5'
y1='50'
x2='67.5'
y2='50'
strokeWidth='5'
></line>
<line
x1='50'
y1='32.5'
x2='50'
y2='67.5'
strokeWidth='5'
></line>
</svg>
</div>
}
/>
</div>
</div>
)
}
export default App
MIT © chimdie
FAQs
react library for uploading images
The npm package react-image-upload receives a total of 586 weekly downloads. As such, react-image-upload popularity was classified as not popular.
We found that react-image-upload 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
In an open letter, JavaScript community leaders urge Oracle to give up the JavaScript trademark, arguing that it has been effectively abandoned through nonuse.
Security News
The initial version of the Socket Python SDK is now on PyPI, enabling developers to more easily interact with the Socket REST API in Python projects.
Security News
Floating dependency ranges in npm can introduce instability and security risks into your project by allowing unverified or incompatible versions to be installed automatically, leading to unpredictable behavior and potential conflicts.