
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
cra-template-ts-wind
Advanced tools
This project was bootstrapped with Create React App --template typescript. it has tailwindcss with few plugin and removes some boilerplate code.
npx create-react-app my_path --template ts-wind
cd my_path
npm run start # yarn start
Tailwindcss is a utility first css framework that helps build and compose design in the HTML markup.
All script available in create-react-app
are available as well
npm run start
If you are working with images, install the responsive images generator, Image Processing Pipeline and than:
ipp -i your_image_path -o src/Asssets/images
to automatically generate different optimized web images for different screen sizes:
import React, { Component } from 'react';
import splashMd from "./Asssets/images/splash-md.webp"
import splashSm from "./Asssets/images/splash-sm.webp"
import splashLg from "./Asssets/images/splash-lg.webp"
import splashXl from "./Asssets/images/splash-xl.webp"
class Splash extends Component
{
render()
{
return (
<div className='absolute z-n2 flex justify-center'>
<img className={`min-w-screen min-h-screen object-cover `} src={splashMd} srcSet={ `${splashSm} 300w, ${splashMd} 768w, ${splashLg} 1280w, ${splashXl} 1400w`} alt='Splash' />
</div>
);
}
}
FAQs
a minimal TypeScript template for Create React App with tailwind.
We found that cra-template-ts-wind 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.