
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@timechimp/tacugama
Advanced tools
React components for a seamless integration with the TimeChimp UI
$ npm install @timechimp/tacugama
Wrap your app with the Tacugama ThemeProvider
import { App } from './App';
import { ThemeProvider } from '@timechimp/tacugama';
ReactDOM.render(
<ThemeProvider>
<App />
</ThemeProvider>,
document.getElementById('root'),
);
Use Tacugama components in your app
import { Avatar } from '@timechimp/tacugama';
export const App = () => (
<>
<Avatar name="John Doe" />
</>
);
Create a custom _app.jsx and wrap the Component with the Tacugama ThemeProvider
import { ThemeProvider } from '@timechimp/tacugama';
function MyApp({ Component, pageProps }) {
return (
<>
<ThemeProvider>
<Component {...pageProps} />
</ThemeProvider>
</>
);
}
export default MyApp;
Create a custom _document.jsx and set it up as follows:
import Document, { Html, Head, Main, NextScript } from 'next/document';
import { StyletronProvider, styletron } from '@timechimp/tacugama';
class MyDocument extends Document {
static getInitialProps(props) {
const page = props.renderPage((App) => (props) => (
<StyletronProvider value={styletron}>
<App {...props} />
</StyletronProvider>
));
const stylesheets = styletron.getStylesheets() || [];
return { ...page, stylesheets };
}
render() {
return (
<Html>
<Head>
{this.props.stylesheets.map((sheet, i) => (
<style
className="_styletron_hydrate_"
dangerouslySetInnerHTML={{ __html: sheet.css }}
media={sheet.attrs.media}
data-hydrate={sheet.attrs['data-hydrate']}
key={i}
/>
))}
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;
For all available components check out the Tacugama Storybook
Releases are handled by the CI/CD pipeline. All you need to do is bump the version number in package.json and the pipeline will take care of releasing it to the NPM registry.
FAQs
https://github.com/TimeChimp/tacugama#readme
The npm package @timechimp/tacugama receives a total of 844 weekly downloads. As such, @timechimp/tacugama popularity was classified as not popular.
We found that @timechimp/tacugama demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.