
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
react-tour-guild
Advanced tools
This project uses `react-tour-guild` to create guided tours in your React application.
This project uses react-tour-guild to create guided tours in your React application.
Before using react-tour-guild, you need to install tailwindcss. You can install it using npm by following the Tailwind CSS installation guide.
To install react-tour-guild, you can use npm:
npm install react-tour-guild
Here is a basic example of how to use react-tour-guild in your project:
// main.ts
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import { TourProvider } from 'react-tour-guild';
import App from './App';
const EXAMPLE_STEPS = [{
id: 'step-1',
title: 'Step 1',
description: 'This is the first step',
stepIndex: 1,
}, {
id: 'step-2',
title: 'Step 2',
description: 'This is the second step',
stepIndex: 2,
}]
createRoot(document.getElementById('root')!).render(
<StrictMode>
<TourProvider allSteps={EXAMPLE_STEPS}>
<App />
</TourProvider>
</StrictMode>,
);
Here's how to use react-tour-guild with a simple React app:
// App.tsx
import { useState } from 'react';
import reactLogo from './assets/react.svg';
import viteLogo from '/vite.svg';
function App() {
const [count, setCount] = useState(0);
return (
<div>
<div>
<a href="https://vite.dev" target="_blank">
<img id='step-1' src={viteLogo} className="logo" alt="Vite logo" />
</a>
<a href="https://react.dev" target="_blank">
<img src={reactLogo} className="logo react" alt="React logo" />
</a>
</div>
<h1 id='step-2'>Vite + React</h1>
<div className="card">
<button onClick={() => setCount((count) => count + 1)}>
count is {count}
</button>
<p>Edit <code>src/App.tsx</code> and save to test HMR</p>
</div>
```typescript
</div>
);
}
export default App;
For more detailed information, please refer to the react-tour-guild documentation.
This project is licensed under the MIT License.
FAQs
This project uses `react-tour-guild` to create guided tours in your React application.
The npm package react-tour-guild receives a total of 0 weekly downloads. As such, react-tour-guild popularity was classified as not popular.
We found that react-tour-guild demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.