
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
escalade-react-price
Advanced tools
A react component to display Escalade Sports pricing.
With Yarn:
yarn add escalade-react-price
Or npm:
npm install --save escalade-react-price
To display price for a single item:
import { Price } from 'escalade-react-price'
...
<Price id='AT86A06455R' site='bear' />
{/* Or with render prop */}
<Price id='AT86A06455R' site='bear'>{price => {
return <div>{price}</div>
}}</Price>
To prefetch prices for all or some products, you can either use the function directly (recommended) or use the component. Just pass in the IDs as well as any other options you would supply for the Price component.
Do this with all IDs on the site to make ensure there's no load times on any price components.
import { prefetchPrices } from 'escalade-react-price'
...
componentWillMount(){
prefetchPrices({
site: 'bear',
ids: [
'AT86A06455R',
'AK1450SR',
'AFT2032140',
]
})
}
import { PrefetchPrices } from 'escalade-react-price'
...
<PrefetchPrices
site='bear'
ids={[
'AT86A06455R',
'AK1450SR',
'AFT2032140',
]}
/>
Property | Description | Type | Default |
---|---|---|---|
id | The ID to show pricing from (if using Price component) | String | undefined |
ids | A list of IDs to prefetch pricing | Array | undefined |
site | The site ID to pull pricing from | String | `process.env.SITE_ID |
unavailable | Display property if pricing is unavailable | String or Component | '' |
loading | Display property while pricing is loading | String or Component | '' |
cookies | Saves fetched pricing to a cookie for quicker loading | Boolean | true |
cookieExpiration | Number of days until cookie expirtes | Number | 1 |
pollInterval | Length of time in milliseconds until all product pricing is fetched again | Number | 900000 (15 minutes) |
endpoint | A URL or stage to fetch prices from | String | `process.env.PRICING_ENDPOINT |
FAQs
A react component to display Escalade Sports pricing.
The npm package escalade-react-price receives a total of 0 weekly downloads. As such, escalade-react-price popularity was classified as not popular.
We found that escalade-react-price 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.