Borislav Hadzhiev
Mon Mar 28 2022·2 min read
Photo by Darshan Gajara
To solve the error "Cannot find module 'moment'", make sure to install the
moment
package by opening your terminal in your project's root directory and
running the following command: npm i moment
and restart your IDE and
development server.
Open your terminal in your project's root directory (where your package.json
file is located) and run the following command:
npm install moment
This will add the moment
package to the dependencies of your project.
If the error is not resolved, try to delete your node_modules
and
package-lock.json
(not package.json
) files, re-run npm install
and restart
your IDE.
# 👇️ delete node_modules and package-lock.json rm -rf node_modules rm -f package-lock.json # 👇️ clean npm cache npm cache clean --force npm install
If you use TypeScript and are getting the error "Cannot find module 'moment' or
its corresponding type declarations", make sure to update your moment
version
to the latest. The issue is fixed in versions greater than 2.25.1
.
npm install moment@latest
If you're still getting the "Cannot find module 'moment'" error, open your
package.json
file and make sure it contains the moment
package in the
dependencies
object.
{ // ... rest "dependencies": { "moment": "^2.29.1", } }
You can try to manually add the line and re-run npm install
.
npm install
Or install the latest version of the package:
npm install moment@latest
The moment
module should NOT be globally installed or be in your project's
devDependencies
, it should be in the dependencies
object in your
package.json
file.