![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.
@prosingularity/tau-js
Advanced tools
Client-side library for TAU - Twitch Api Unifier. Browser and NodeJS support. Full Typescript support.
_ _
| |_ __ _ _ _ (_)___
| __/ _` | | | |_____| / __|
| || (_| | |_| |_____| \__ \
\__\__,_|\__,_| _/ |___/
|__/
Client-side library for TAU - Twitch Api Unifier. Browser and NodeJS support. Full Typescript support.
Make sure you have a TAU backend running. Find it on Github.
Available as window.TauClient
.
Download the library from our Github Releases.
<script src="/path/to/tau-js.browser.js"></script>
<script>
const tau = new TauClient(
'ws://localhost:8000/ws/twitch-events/',
'MY_TAU_API_TOKEN'
);
tau.connect();
tau.follows.subscribe((event) => {
console.log(
`❤️ ❤️ ❤️ Thanks for following @${event.event_data.user_name}. ❤️ ❤️ ❤️`
);
});
</script>
in command line:
npm install @prosingularity/tau-js
Then use via import or require
import { TauClient } from '@prosingularity/tau-js';
// alternatively use require()
// const { TauClient } = require('@prosingularity/tau-js');
const port = 8000;
const secretTauApiToken = 'MY_SECRET_TOKEN';
const uri = `ws://localhost:${port}/ws/twitch-events/`;
const tau = new TauClient(uri, secretTauApiToken);
tau.connect();
tau.follows.subscribe((event) => {
console.log(
`❤️ ❤️ ❤️ Thanks for following @${event.event_data.user_name}. ❤️ ❤️ ❤️`
);
});
Make sure TAU (backend) is running.
npm install
npm run build
# Adjust port and api token for TAU in index.html
python3 -m http.server 8080 &
google-chrome http://localhost:8080
# check your browser's console for the following message:
# TAU: connected
# adjust port and api token for TAU in node.example.ts
# NOTE: requires ts-node installed
ts-node node.example.ts
Next, you can run this manual test:
Send a test follow-event with TAU backend.
Your respective console should show the following message:
Thanks for following @USERNAME.
FAQs
Client-side library for TAU - Twitch Api Unifier. Browser and NodeJS support. Full Typescript support.
The npm package @prosingularity/tau-js receives a total of 1 weekly downloads. As such, @prosingularity/tau-js popularity was classified as not popular.
We found that @prosingularity/tau-js 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.
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.