Skip to content

Instantly share code, notes, and snippets.

View ThePuscher's full-sized avatar
🏛️
ERASMUS@Sapienza

Joshua Michael Pusch ThePuscher

🏛️
ERASMUS@Sapienza
  • Munich, Germany
View GitHub Profile
@ThePuscher
ThePuscher / README.md
Last active April 23, 2022 17:54
jest with ES6 modules

jest with ES6 modules

If you encounter this error when trying to use ES6 modules with jest:

SyntaxError: Cannot use import statement outside a module

Run the tests with:

NODE_OPTIONS=--experimental-vm-modules npx jest
@spalladino
spalladino / mysql-docker.sh
Created December 22, 2015 13:47
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE