This is a powerful and user-friendly web-based application designed to effortlessly track transactions between friends and families, while also simplifying personal finance management. With its intuitive interface, interactive features.
email : credit@gmail.com
password : 1234#@New
Clone the project
git clone git@github.com:pankajpareek026/credit.git
Go to the project directory
cd credit
npm install
cd api
npm install
npm run start
//open new tab and start backend server
cd api
npm run start
const mongoose = require('mongoose')
const url = <your connection string>
const connectionParams = {
useNewUrlParser: true,
useUnifiedTopology: true
}
mongoose.connect(url, connectionParams).then((e) => {
// console.log(e)
console.log("DB > connected")
}).catch((ee) => {
console.info("ERR: ", ee)
})
Home page
DashBoard
Add Transaction
Transactions Detail
Share Transaction Detils Page
Client: ReactJS
Server: NodeJS, ExpressJS
Database: MongoDB