
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.
create-rss-app
Advanced tools
CLI for create simple JS or TS project without webpack configuration
Easiest way to start use modules in your js app
npx create-rss-app my-app
cd my-app
npm start
npm start
- Starts the development server.npm run build
- Boundles your app into static files for deployment.This package use webpack with simpliest configuration.
src
folder in project directory. Includes styles, images, etc..src
folder should contains index.html
src
folder should contains index.js
(or index.ts
if TypeScript is used) - it will be entry point to your app.import 'styles.scss';
. But, if your scss/sass file and html have a same name (like index.html
and index.scss
), <link> tag will be added to html automatically, you don't need to use import in js (but you still need to add links to css manually).npm run build
, project bundle will be created in dist
directory.You can configure options by using different flags.
You can use --configs
or -c
flags if you want to add webpack config to your project directory. It will give you more control.
npx create-rss-app my-app --configs
This package use typescript compiller by default and you can code your app with both languages - JS and TS.
But if you want to code with TS (and don't want to eject configs) - you can use flags --typescript
or -ts
for add tsconfig.json to your project directory.
npx create-rss-app my-app -ts
By default, create-rss-app add simple example of html, css and js files to your project, if there are not exists. But, if you don't need it, use the flag --empty
.
FAQs
CLI for create simple js (or ts) SPA application
The npm package create-rss-app receives a total of 0 weekly downloads. As such, create-rss-app popularity was classified as not popular.
We found that create-rss-app 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.