Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
react-tenor-gif-picker
Advanced tools
react-tenor-gif-picker is a React component that allows you to easily add a Tenor GIF picker to your React app.
react-tenor-gif-picker is a React component that allows you to easily add a Tenor GIF picker to your React app.
npm install --save react-tenor-gif-picker
import React, { Component } from 'react'
import 'react-tenor-gif-picker/dist/index.css'
import TenorGifPicker from 'react-tenor-gif-picker'
const App = () => {
const [active, setActive] = React.useState(false)
const tenorApiKey = 'TENOR_API_KEY'
const [Gifs, setGifs] = React.useState([])
return (
<div>
<button
onClick={() => {
setActive(true)
}}
>
Show Picker
</button>
<TenorGifPicker
tenorAccessKey={tenorApiKey}
active={active}
setActive={setActive}
initialSearchQuery='Funny'
onGifSelect={(gifData) => {
let list = gifData ?? []
list.push(gifData)
setGifs(list)
setActive(false)
}}
/>
</div>
)
}
Before you get started with react-tenor-picker get a free Tenor API key tenor.com
MIT © thealphamerc
FAQs
react-tenor-gif-picker is a React component that allows you to easily add a Tenor GIF picker to your React app.
We found that react-tenor-gif-picker 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 allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.