
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.
coralite is a static site generator library built around the emerging HTML modules proposal.
Before using the Coralite CLI, ensure that it's installed on your system. You can install it globally using npm:
npm install -g coralite
# or
yarn global add coralite
# or
pnpm add -g coralite
You can also install coralite as a development dependency:
npm install --save-dev coralite
# or
yarn add -D coralite
# or
pnpm add -D coralite
Coralite is executed using the following command:
coralite [options]
For more information about the
Replace [options]
with the desired flags and arguments.
To generate a website using Coralite, you must provide three essential options:
-t src/templates
).-p src/pages
).--output dist
).Here's an example of how these options might look:
coralite --templates path/to/templates --pages path/to/pages --output dist
Run the CLI in dry-run mode to preview the actions that would be performed without actually generating the website. This is useful for debugging or when you want to check potential issues before committing changes:
coralite --templates path/to/templates --pages path/to/pages --output dist --dry-run
Coralite uses ECMAScript Modules and Import meta resolve which requires to run Node.js with the --experimental-vm-modules
and --experimental-import-meta-resolve
option enabled.
node --experimental-vm-modules --experimental-import-meta-resolve node_modules/coralite/bin/coralite.js [options]
If you require your templates to import
or using NODE_OPTIONS
NODE_OPTIONS="--experimental-vm-modules --experimental-import-meta-resolve" coralite [options]
FAQs
HTML modules static site generator
The npm package coralite receives a total of 24 weekly downloads. As such, coralite popularity was classified as not popular.
We found that coralite demonstrated a healthy version release cadence and project activity because the last version was released less than 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.