Socket
Book a DemoInstallSign in
Socket

gate-evm-hardhat-foundry

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gate-evm-hardhat-foundry

快速创建 Hardhat集成foundry 项目的 CLI 脚手架工具

latest
npmnpm
Version
2.0.5
Version published
Maintainers
1
Created
Source

Create Hardhat2集成foundry App

构建npm包

# 1. 登录 npm(首次)
npm login

# 2. 检查配置
npm whoami  # 确认登录的账户
npm config list

# 3. 构建项目
npm run build

版本管理

# 更新版本号(自动更新 package.json)
npm version patch  # 1.0.0 -> 1.0.1 (bug 修复)
npm version minor  # 1.0.0 -> 1.1.0 (新功能)
npm version major  # 1.0.0 -> 2.0.0 (破坏性更改)

# 或手动编辑 package.json 中的 version

发布

# 发布到 npm
npm publish

脚手架使用指南

  • 拉取 bitbucket 项目仓库到本地(可选)
  • 在本地全局安装(根目录下)(可选)
npm install
npm link 或者 npm i -g ./
  • 后续创建新项目时使用指定框架
# 使用 npx (推荐)
npx gate-evm-hardhat-foundry test-hardhat-foundry-app

# 使用 npm
npm gate-evm-hardhat-foundry test-hardhat-foundry-app

# 使用 yarn
yarn gate-evm-hardhat-foundry test-hardhat-foundry-app

本地创建

node evm-hardhat-cli/bin/cli.js test-hardhat-foundry-app --package-manager npm

Keywords

hardhat

FAQs

Package last updated on 03 Dec 2025

Did you know?

Socket

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.

Install

Related posts