![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@texastribune/text-balancer
Advanced tools
This is a fork of a New York times package. See below for details of modifications made.
Text-balancer is a javascript module that seeks to eliminate typographic widows from text. It does this by setting the max-width of the dom node to the threshold that it would spill onto another line.
Install it into your project via npm
npm install text-balancer --save
https://www.npmjs.com/package/text-balancer
We use bramstein's Font Face Observer to check when our fonts have loaded: https://github.com/bramstein/fontfaceobserver
We run our text-balancer once our fonts load.
import textBalancer from 'text-balancer';
// Run it when you want to with any set of selectors
textBalancer.balanceText('.headline, .interactive-leadin, #horse-god');
// OR: Just run it and it will look for anything with the balance-text class
textBalancer.balanceText();
Include text-balancer.standalone.js wherever you load your js files
and then:
PUT THIS SCRIPT AFTER YOUR MARKUP IDEALLY UNDER THE BODY TAG
OR JUST WRAP IT IN SOME SORT OF AN ONLOAD EVENT :)
<script>
// Run it when you want to with any set of selectors
textBalancer.initialize('.headline, .interactive-leadin, #horse-god');
// OR: Just run it and it will look for anything with the balance-text class
textBalancer.balanceText();
</script>
Per license requirements, you can see a list of Texas Tribune modifications by viewing this repository's commit history on GitHub. Additionally, there are comments atop changed files where possible. We have modified/created the following files:
package.json
yarn.lock
.gitignore
README.md
text-balancer.js
FAQs
Plugin to balance text
The npm package @texastribune/text-balancer receives a total of 3 weekly downloads. As such, @texastribune/text-balancer popularity was classified as not popular.
We found that @texastribune/text-balancer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.