A webapp made with react for taking voice notes created as part of 36 hour hackathon.
voice-notes
is a webapp that helps you keep track of your thoughts or ideas in the form of voice notes/memos.
As of now it has no backend at all and uses idb-keyval
database which is simple key-value database built on
top IndexedDB of the browser. As all the data is stored locally, you'll never have to worry about it leaving your
device.
git clone
ordownload
this repositorycd voice-notes
npm install
npm start
voice-notes
's use of IndexedDB can cause functionality issue on browsers with either partial implementation or complete lack of it.voice-notes
on lower level uses HTML5 MediaRecorder API to record audio, which is not widely supported on smartphone browsers which could cause issues related to voice recording.