https://github.com/flaque/send-me-that
https://github.com/flaque/send-me-that
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flaque/send-me-that
- Owner: Flaque
- Created: 2017-01-08T05:17:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-12T18:29:55.000Z (over 8 years ago)
- Last Synced: 2025-01-20T10:13:54.076Z (4 months ago)
- Language: JavaScript
- Size: 169 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Send Me That!
A [Mixmax](http://developer.mixmax.com/docs/getting-started) integration that takes code-sharing a step further. This lets you share
runnable code that you can actually play with.
---
# Setup!
(I personally use [yarn](https://github.com/yarnpkg/yarn) but
running npm will work here fine as well.)## Install!
``` npm install ``` or ```yarn```
Then, follow the instructions [here](http://developer.mixmax.com/docs/getting-started) to add the project to your mixmax dashboard.
## Run!
``` npm start ``` or ```yarn start```
Or you can run
``` npm start-like-prod``` or ``` yarn start-like-prod ```
to run with a compressed version of react.
## Test!
We use [jest](https://facebook.github.io/jest/) as our test runner.``` npm test-watch ``` or ``` yarn test-watch ```
## Create!
You can create new react modules with the create script found in
`scripts/create`. It will autogenerate a sass file and a jest
test for you.``` npm create MyModuleName ``` or ``` yarn create MyModuleName```