Skip to content

Instantly share code, notes, and snippets.

View MikeNats's full-sized avatar
☀️
Digital Nomad

Mike MikeNats

☀️
Digital Nomad
View GitHub Profile
@MikeNats
MikeNats / pm2.json
Created June 7, 2017 19:59 — forked from ahmadina/pm2.json
using PM2 for run ES6 (babel) application
{
"apps": [{
"name": "Application",
"exec_interpreter": "./node_modules/babel-cli/bin/babel-node.js",
"script": "./bin/www",
"args": [],
"watch": ["public", "package.json", "pm2.development.json"],
"ignore_watch": ["public"],
"watch_options": {
"persistent": true,
@MikeNats
MikeNats / AEMDevResources
Created March 3, 2017 13:40 — forked from thomasmorf/AEMDevResources
Adobe Experience Manager Resources for Developers
Documentation
-------------
AEM: http://docs.adobe.com
Recent updates: https://docs.adobe.com/docs/en/aem/recent-documentation-updates.html
AEM Docs daily changes: http://adobedocsdiff.headwire.com/sitediff/
API References
@MikeNats
MikeNats / AEMDevResources
Created March 3, 2017 13:40 — forked from thomasmorf/AEMDevResources
Adobe Experience Manager Resources for Developers
Documentation
-------------
AEM: http://docs.adobe.com
Recent updates: https://docs.adobe.com/docs/en/aem/recent-documentation-updates.html
AEM Docs daily changes: http://adobedocsdiff.headwire.com/sitediff/
API References
@MikeNats
MikeNats / rxjs_operators_by_example.md
Created September 14, 2016 22:31 — forked from btroncone/rxjs_operators_by_example.md
RxJS 5 Operators By Example
@MikeNats
MikeNats / AngularJS-ES6-Test-Skeleton
Created April 30, 2016 19:32 — forked from busypeoples/AngularJS-ES6-Test-Skeleton
AngularJS - Karma, Jasmine, Browserify, Stringify - ES6 Test Setup
We couldn’t find that file to show.
  • Open Sublime Menu → Tools → Build System → New Build System...
  • Paste this code:
{
  "cmd": ["babel-node", "$file"],
  "selector": "source.js",
  "path": "/usr/local/bin:$PATH", // ENV setting for mac users
  "quiet": true // get rid of annoying `[Finished in %fs]`
}