-
Notifications
You must be signed in to change notification settings - Fork 1
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
Port VALVE python to js #13
base: main
Are you sure you want to change the base?
Conversation
OK - I got the CLI vs. API working now. The name is now |
@jamesaoverton I think we need to decide which functions we should export for use in the API. I have a pretty short list right now, but perhaps the API needs more? It's annoying that I can't just specify all of them... module.exports = {
getRows: getRows,
idxToA1: idxToA1,
parse: parse,
validate: validate,
validateTable: validateTable,
valve: valve,
}; |
Sorry, this is officially on the back-burner. I'll remove the request for review for now. |
Setup
First, download the repository and navigate to the new directory. Then, install VALVE and its dependencies:
This will install the dependencies in a new subdirectory
node_modules
. If you wish to install them globally:To install the command line program, run this command from within the repo (note that you may need to preceed this with
sudo
):To confirm installation, run:
To import into projects:
You can also run tests with
npm test