setup

with vim This app is written for a *NIX environment only, all commands are run in terminal. You need Nodejs and npm (Node Package Manager) for package management.
In Mac, you can install npm using Homebrew– Install Homebrew if you don't have it from their webpage.
After brew installed, in your terminal:

brew install npm

develop

developing with vue

For development, we will need to have a distributed version control system set up. See this short intro for general information on git.

After Forking to your account, Clone the repository to your local machine by:

git clone <your-github-repository>

Point into the project folder in terminal:

it is a good idea to use the vue-cli which is the vuejs' client for creating and working with the vue development components from command line.
install with npm:

npm install -g @vue/cli

cd remembrance

Install the project dependencies with npm.

npm install

Run the node server with:

npm start serve

Check out the application live on localhost:8080 in your browser.