Skip to content

catd825/plaid-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 

Repository files navigation

plaid-project

This app uses the Plaid API to connect to a sample bank account to load transactions. This is set up with ReactJS on the front end and NodeJS/Express on the backend.

cd server and run npm install
cd client and run npm install

You will need to create a free Plaid account to get keys. Once you have the keys, you need to create the keys file:
Under server: cd config
touch keys.js
In the file, add the following:

module.exports = {
    PLAID_CLIENT_ID: 'ADD CLIENT KEY',
    PLAID_SECRET: 'ADD SANDBOX SECRET KEY'
};

If you want to push your work to Github, remember to hide your keys:
Under server: touch .gitignore
In .gitignore add keys.js

To run both servers, run npm run dev

When prompted, add the following test credentials:
username: user_good
password: pass_good

About

A simple app utilizing the Plaid API to securely access sample bank transactions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published