Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
react-text-overflow
Advanced tools
React Text Overflow is a React component that targets the ability to overflow a single line of text (with ellipses) from the left, or the center, or from an offset. Hoping one day this is entireably possible with CSS but we're not quite there yet.
React Text Overflow requires React 17 or later.
npm i -S react-text-overflow
This is the most basic usecase, which honestly you should just use vanilla CSS for this piece. It will overflow text from the end.
import React from 'react';
import TextOverflow from 'react-text-overflow';
const MyComponent = () => (
<TextOverflow text="this is some text that we want to truncate." />
)
This will break the text in the center allowing the beginning and end to show.
const MyComponent = () => (
<TextOverflow truncatePosition="middle" text="this is some text that we want to truncate." />
)
This will break after the first 10 characters.
const MyComponent = () => (
<TextOverflow startPos={10} truncatePosition="middle" text="this is some text that we want to truncate." />
)
This causes the text to overflow from the left of the element.
const MyComponent = () => (
<TextOverflow truncatePosition="start" text="this is some text that we want to truncate." />
)
Type: start | middle | end
Default: end
This is what determines where the text will overflow.
Type: Number
Default: 0
This is to be used in combination with truncatePosition
center
, this will break the text in that location.
npm run build
cd examples
npm run dev
FAQs
Controls when and how to overflow text
The npm package react-text-overflow receives a total of 1,175 weekly downloads. As such, react-text-overflow popularity was classified as popular.
We found that react-text-overflow 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
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.