
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
@160over90/vue-tweened-number
Advanced tools
A component for tweening between numeric values.
Allows you to tween any given numbers. You also have the ability to change CSS or invoke logic while the value is tweening or once the tweening is completed.
This component allows two event hooks.
@update allows you to execute logic while the value is tweening.@complete allows you to execute logic once the tweening is completed.Example
<TweenedNumber
:value="number"
:duration="2000"
:easing="easing.bind()"
@update="update"
@complete="complete"
/>
...
methods: {
update() {
// Do something
},
complete() {
// Do something
},
},
To get access to the original DOM event, use the special $event variable.
<TweenedNumber
:value="number"
:duration="2000"
:easing="easing.bind()"
@update="update($event)"
/>
...
methods: {
update(event) {
// eslint-disable-next-line no-console
console.log('updating', event);
},
},
tag (String, Default: 'span') The type of HTML element you want.
value (Number, Required) The value that you want to tween.
easing ([String, Function], Default: TWEEN.Easing.Linear.None) What determines how Tween.js interpolates between values. For more information on Tween easing methods click here.
duration (Number, Default: 1000) How long you want the tweening to last.
yarn install
yarn run serve
yarn run build
yarn run lint
FAQs
A component for tweening between numeric values.
We found that @160over90/vue-tweened-number 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.