![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
dtrum-react-kit
Advanced tools
The pack of useful dtrum js api events utilities;
Send endSession event when user trying close browser tab, event fired by "beforeunload" event.
❗️ Beware! It may not work in the different cases and browsers.
import { useDtrumEndSession } from 'dtrum-react-kit/hooks';
const App = () => {
useDtrumEndSession();
return (<div />);
};
Mozilla recommend to use visibilitychange event, but it will also fire when user returns to the tab and left again. Anyway you can put the event name into the hook as property. it will be fired when the tab was hidden
...
useDtrumEndSession("visibilitychange");
...
Listener send to global variable current data-test-id for using it in Dynatrace's dashboard
import { useDtrumListener } from 'dtrum-react-kit/hooks';
const App = () => {
useDtrumListener(); // Save the current data-test-id to the global variable _dtElementId, used in the Dynatrace dashboard
return (<div />);
};
You can put another listener with the different logic
import { useDtrumListener } from 'dtrum-react-kit/hooks';
import { enterActionListener } from 'dtrum-react-kit/listeners';
const App = () => {
useDtrumListener(enterActionListener); // Create custom action with the current data-test-id as name
return (<div />);
};
Send custom action when the component is mounted
import { useDtrumOnMount } from 'dtrum-react-kit/hooks';
const pageName = 'Home';
const App = () => {
useDtrumOnMount(pageName); // Send on first mount component
return (<div />);
};
Send dtrum disable and endSession events
import { dtrumEndSession } from 'dtrum-react-kit/tools';
const App = () => {
const [user, setUser] = useState(null);
const logout = () => {
setUser(null);
dtrumEndSession(); // Fire action about session ending
};
return (<div />);
};
Send dtrum custom action with the name
import { sendDtrumAction } from 'dtrum-react-kit/tools';
const App = () => {
const [user, setUser] = useState(null);
const onClickHandler = () => sendDtrumAction('Click on button');
return (<button onClick={onClickHandler} />);
};
FAQs
Dynatrace tools and react hooks collection
The npm package dtrum-react-kit receives a total of 2 weekly downloads. As such, dtrum-react-kit popularity was classified as not popular.
We found that dtrum-react-kit 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
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.