Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated readme and package.json - related to node version #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Solutions to the course programming challenges can be found on the `solutions` b

In order to start and run this application, you will need:

- [Node.js](https://nodejs.org/en/download/) (8.9.4 or newer, we recommend using the current Long Term Stable version)
- [Node.js](https://nodejs.org/en/download/) (10.24.1 or newer, we recommend using the current Long Term Stable version)
- npm (installed with Node.js)
- Access to a local or remote installation of [Redis](https://redis.io/download) version 5 or newer (local preferred)
- If you want to try the RedisTimeSeries exercises, you'll need to make sure that your Redis installation also has the [RedisTimeSeries Module](https://oss.redis.com/redistimeseries/) installed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"private": true,
"scripts": {
"dev": "./node_modules/nodemon/bin/nodemon.js",
"dev": "nodemon",
"load": "node src/utils/data_loader.js --",
"lint": "./node_modules/eslint/bin/eslint.js src tests",
"start": "node ./src/app.js",
Expand All @@ -17,7 +17,7 @@
},
"author": "Redis",
"engines": {
"node": ">=8.9.4"
"node": ">=10.24.1"
},
"license": "MIT",
"dependencies": {
Expand Down