
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
holymoly-slider
Advanced tools
NOTE: it is in beta stage!
This is dependency free drag slider used on www.holymolycasinos.com/casinos
html
<div class="hm-slider casino"> <!-- you may change theme 'casino' to 'slot' -->
data-hm-slider
data-hm-slider-min="100"
data-hm-slider-max="12000"
data-hm-slider-step="50"
>
<div class="hm-slider__underlay">
<div class="hm-slider__trigger-1" data-trigger="left" data-custom-name="global_score_min"> </div>
<div class="hm-slider__scroll-indicator" data-indicator> </div>
<div class="hm-slider__trigger-2" data-trigger="right" data-hm-slider-cut-sign="+" data-custom-name="global_score_max"> </div>
</div>
</div>
js
import hmSlider from 'holymoly-slider'
const slider = hmSlider({
selector: document.querySelector('[data-hm-slider]'),
formatNumber: true, // changes '12345' to '12.3k' (default false)
step: 100, // you can specify step here
onInit: data => console.log('onInitEvent', data),
onChangeStart: data => console.log('onChangeStart', data),
onChange: data => console.log('onChange', data),
onChangeEnd: data => console.log('onChangeEnd', data)
})
// reset slider to initial values
slider.command('reset').then(data => {
console.log('reseted to initial values::', data)
})
// if you initialized slider under display:none property, you should update it
// after you make it visible again
slider.command('update').then(data => {
console.log("slider ui recalculated::", data)
})
// you may set slider values programmatically, make sure that this value
// are consistent with the min and max values
slider.command('set', {
hmSliderMin: 5,
hmSliderMax: 8
}).then(data => console.log('slider::', data))
All these commands are asynchronous and return a promise.
scss
@import "from/node_modules/holymoly-slider/dist/hm-slider";
Or copy styles from there and use only the theme that you need
npm i --save holymoly-slider
FAQs
holymoly drag slider
The npm package holymoly-slider receives a total of 14 weekly downloads. As such, holymoly-slider popularity was classified as not popular.
We found that holymoly-slider 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.