Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ava-cassiopeia/emdr-clicker
Simple static website that provides stereo clicking for EMDR therapy.
https://github.com/ava-cassiopeia/emdr-clicker
bilateral-stimulation emdr emdr-resources therapy website
Last synced: 3 months ago
JSON representation
Simple static website that provides stereo clicking for EMDR therapy.
- Host: GitHub
- URL: https://github.com/ava-cassiopeia/emdr-clicker
- Owner: ava-cassiopeia
- License: isc
- Created: 2022-06-18T21:20:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-24T01:40:45.000Z (7 months ago)
- Last Synced: 2024-05-09T11:32:09.465Z (6 months ago)
- Topics: bilateral-stimulation, emdr, emdr-resources, therapy, website
- Language: TypeScript
- Homepage:
- Size: 491 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-psychology-projects - ava-cassiopeia/emdr-clicker - super nice EMDR tool with sound (Psychotherapy / EMDR)
README
# EMDR Clicker
**Site:** [emdr-clicker.web.app](https://emdr-clicker.web.app/)
Simple web tool that provides
[bilateral stimulation](https://en.wikipedia.org/wiki/Bilateral_sound) for
[EMDR Therapy](https://en.wikipedia.org/wiki/Eye_movement_desensitization_and_reprocessing).Hosted on Google Cloud Firebase, but this generates static HTML / JS / CSS so
it can be hosted anywhere, even locally.## Contributing
Feel free to send pull requests, bugs, feature requests, etc.
In general, try to write accessible, performant, readable frontend code. Follow
the
[Google TypeScript Style Guide](https://google.github.io/styleguide/tsguide.html)
where possible, or match style with existing code otherwise.## Local Development
Build:
```shell
npm run build
```Clean up generated files from build:
```shell
npm run clean
```Watch for changes and rebuild dynamically:
```shell
npm run watch
```Run local webserver that serves builds:
```shell
npm run serve
```