Skip to content

Commit

Permalink
restrict required Node version (<10) to avoid SQLite incompatibilities (
Browse files Browse the repository at this point in the history
closes #15)
  • Loading branch information
bhinebaugh committed Mar 13, 2020
1 parent 2455e6c commit 27db03e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@


## Install
First you have to install NodeJS if you don't already have it from https://nodejs.org/. This app has been developed on Node version 7.9 and also tested on Node 8. In case you have older version you might need to also install a newer one. This is easy to do using the Node Version Manager from https://github.com/creationix/nvm. Then clone the repo, install the dependencies and start it:
First you have to install NodeJS if you don't already have it from https://nodejs.org/. This app has been developed on Node version 7.9 and also tested on Node 8 and 9. There is a known conflict that currently prevents use of Node version 10 or later. If your system's version is outside that range you will want to install a supported version. This is easy to do using the Node Version Manager from https://github.com/creationix/nvm. (_Note the instruction on updating your shell's configuration file or you may find the Node version reverts on starting a new session_)

Then clone the repo, install the dependencies and start it:

```sh
git clone https://github.com/smart-on-fhir/bulk-data-server.git
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start": "node ."
},
"engines": {
"node": "9.0.0"
"node": "<10.0.0"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 27db03e

Please sign in to comment.