Ethereum for JavaScript developers
Page last update: September 15, 2025
JavaScript is among the most popular languages in the Ethereum ecosystem. In fact, there's a teamopens in a new tab dedicated to bringing as much of Ethereum to JavaScript as possible.
There are opportunities to write JavaScript (or something close) at all levels of the stack.
Interact with Ethereum
JavaScript API libraries
If you'd like to write JavaScript to query the blockchain, send transactions and more, the most convenient way to do this is using a JavaScript API library. These APIs allow developers to easily interact with the nodes in the Ethereum network.
You can use these libraries to interact with smart contracts on Ethereum so it's possible to build a dapp where you just use JavaScript to interact with pre-existing contracts.
Check out
- Web3.jsopens in a new tab
- Ethers.jsopens in a new tab – includes Ethereum wallet implementation and utilities in JavaScript and TypeScript.
- viemopens in a new tab – a TypeScript Interface for Ethereum that provides low-level stateless primitives for interacting with Ethereum.
- Driftopens in a new tab – a TypeScript meta-library with built-in caching, hooks, and test mocks for effortless Ethereum development across web3 libraries.
Smart contracts
If you're a JavaScript developer and want to write your own smart contract, you may want to get familiar with Solidityopens in a new tab. This is the most popular smart contract language and it's syntactically similar to JavaScript, which may make it easier to learn.
More on smart contracts.
Understand the protocol
The Ethereum virtual machine
There is a JavaScript implementation of Ethereum's virtual machine. It supports the latest fork rules. Fork rules refer to changes made to the EVM as a result of planned upgrades.
It's split out into various JavaScript packages that you can check out to better understand:
- Accounts
- Blocks
- The blockchain itself
- Transactions
- And more...
This will help you understand things like "what's the data structure of an account?".
If you prefer to read code, this JavaScript could be a great alternative to reading through our docs.
Check out the EVM
@ethereumjs/evmopens in a new tab
Nodes and clients
An Ethereumjs client is in active development that lets you dig into how Ethereum clients work in a language you understand; JavaScript!
Check out the client
@ethereumjs/clientopens in a new tab
Other projects
There are also plenty of other things going on in the land of Ethereum JavaScript, including:
- libraries of wallet utilities.
- tools to generate, import, and export Ethereum keys.
- an implementation of the
merkle-patricia-tree– a data structure outlined in the Ethereum yellow paper.
Dig into whatever interests you most over at the EthereumJS repoopens in a new tab
Further reading
Know of a community resource that helped you? Edit this page and add it!