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
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

gate-evm-hardhat-foundry

unpublished
npmnpm
Version
1.0.0
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

FAQs

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