Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Options:

## Template Types

Two types of templates are provided. [Minimal templates](./templates/min) are
Two types of templates are provided. [Minimal templates](templates/min) are
designed for users that want to build their own front-end project (dApp) without
the need to remove unnecessary boilerplate code.
[Demonstration templates](./templates/demo) are designed to showcase how Web3.js
[Demonstration templates](templates/demo) are designed to showcase how Web3.js
can be used to build dApps.

## Front-End Framework
## Front-End Frameworks

This utility supports the following front-end frameworks:

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"ChainSafe <[email protected]>"
],
"license": "MIT",
"repository": "github:web3/create-web3js-dapp",
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
Expand Down
2 changes: 1 addition & 1 deletion templates/demo/web3js-react-dapp-demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function App() {

return (
<main>
<h1>Web3.js + React Minimal dApp Template</h1>
<h1>Web3.js + React Demonstration dApp</h1>
<div>
This is a sample project that demonstrates using{" "}
<a href="https://web3js.org/">Web3.js</a> with the{" "}
Expand Down
1 change: 1 addition & 0 deletions templates/min/web3js-vue-dapp-min/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"start": "npm run preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
Expand Down