Skip to content

Instantly share code, notes, and snippets.

View developit's full-sized avatar
🦊
write, the codes

Jason Miller developit

🦊
write, the codes
View GitHub Profile
@developit
developit / README.md
Last active August 25, 2024 14:22
Webpack Starter Template

Webpack Starter Template

This is a basic Webpack project template for a web app written in ES6 & LESS.

This assumes you have a directory structure as follows:

package.json
webpack.config.js
src/
@developit
developit / instant-documentation-publish.sh
Last active September 26, 2024 22:57
Publish your docs instantly using gist & documentation-viewer
# SETUP: install documentation.js:
npm i -g documentation browser-pipe
# SETUP: install gist cli (github.com/defunkt/gist)
brew install gist
# generate docs, upload to gist.github.com, then pipe the Gist URL to Documentation Viewer in your browser:
documentation src | gist -p -f docs.json | awk '{print "https://documentation-viewer.firebaseapp.com/#"$1}' | browser-pipe
!function(e,t){if("function"==typeof define&&define.amd)define(["exports"],t);else if("undefined"!=typeof exports)t(exports);else{var n={exports:{}};t(n.exports),e.preact=n.exports}}(this,function(e){"use strict";function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){var n=arguments.length<=2||void 0===arguments[2]?null:arguments[2],r=h(n,e),o=r._component;return o&&i(o,"componentWillMount"),t.appendChild(r),o&&i(o,"componentDidMount"),r}function r(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;n>i;i++)r[i-2]=arguments[i];var c=void 0,l=[],u=r.length,d=void 0,p=void 0;if(u){c=[];for(var f=0;u>f;f++){var h=r[f];if(!a(h)){h.join?d=h:(d=l,d[0]=h);for(var m=0;m<d.length;m++){var v=d[m],g=!a(v)&&!s(v);g&&(v=String(v)),g&&p?c[c.length-1]+=v:a(v)||c.push(v),p=g}}}}t&&t.children&&delete t.children;var y=new F(e,t||void 0,c||void 0);return o(M,"vnode",y),y}function o(e,t){for(var n=e[t],r=arguments.length,o=Array(r>2?r-2:0),i=2;r>i;i++)o[i-2]=arguments[i];
!function(e,t){if("function"==typeof define&&define.amd)define(["exports"],t);else if("undefined"!=typeof exports)t(exports);else{var n={exports:{}};t(n.exports),e.preact=n.exports}}(this,function(e){"use strict";function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){var n=arguments.length<=2||void 0===arguments[2]?null:arguments[2],r=n&&n._component&&n._componentConstructor===e.nodeName,o=f(n,e),s=!r&&o._component;return s&&i(s,"componentWillMount"),f.parentNode!==t&&t.appendChild(o),s&&i(s,"componentDidMount"),o}function r(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;n>i;i++)r[i-2]=arguments[i];var c=void 0,l=[],u=r.length,d=void 0,p=void 0;if(u){c=[];for(var f=0;u>f;f++){var h=r[f];if(!a(h)){h.join?d=h:(d=l,d[0]=h);for(var m=0;m<d.length;m++){var v=d[m],g=!a(v)&&!s(v);g&&(v=String(v)),g&&p?c[c.length-1]+=v:a(v)||c.push(v),p=g}}}}t&&t.children&&delete t.children;var y=new j(e,t||void 0,c||void 0);return o(M,"vnode",y),y}function o(e,t){for(var
!function(e,t){if("function"==typeof define&&define.amd)define(["exports"],t);else if("undefined"!=typeof exports)t(exports);else{var n={exports:{}};t(n.exports),e.preact=n.exports}}(this,function(e){"use strict";function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){var n=arguments.length<=2||void 0===arguments[2]?null:arguments[2],r=n&&n._component&&n._componentConstructor===e.nodeName,o=h(n,e),s=!r&&o._component;return s&&i(s,"componentWillMount"),h.parentNode!==t&&t.appendChild(o),s&&i(s,"componentDidMount"),o}function r(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;n>i;i++)r[i-2]=arguments[i];var c=void 0,l=[],u=r.length,d=void 0,p=void 0;if(u){c=[];for(var f=0;u>f;f++){var h=r[f];if(!a(h)){h.join?d=h:(d=l,d[0]=h);for(var m=0;m<d.length;m++){var v=d[m],g=!a(v)&&!s(v);g&&(v=String(v)),g&&p?c[c.length-1]+=v:a(v)||c.push(v),p=g}}}}t&&t.children&&delete t.children;var y=new F(e,t||void 0,c||void 0);return o(E,"vnode",y),y}function o(e,t){for(var
@developit
developit / preact-docs.md
Last active December 2, 2015 14:40
Preliminary Preact Docs

This is a first crack at generated docs for Preact.

attributes

children

Component

Base Component class, for he ES6 Class method of creating Components

@developit
developit / async-await-is-awesome.js
Created December 15, 2015 18:01
Code Snippet of the Day - Dec 15th, 2015
// series/sequence
let [a, b] = [await one(), await two()];
// parallel
let [a, b] = await* [one(), two()];
@developit
developit / Rollup Automatic External Dependencies.md
Last active June 29, 2021 15:33
Rollup Automatic External Dependencies

Hi!

This is an example of how to use [Rollup] with external dependencies, without hard-coding them.

It reads your installed NPM dependencies and treats them as external to Rollup. They still get bundled, but not as ES2015.

Make sure you have a .babelrc or a "babel":{} section in your package.json.

@developit
developit / classes-or-objects.js
Created January 27, 2016 01:52
Personally I see the value of both. Depends on the codebase.
// mixins with createClass:
const Foo = createClass({
...someMixin,
render: ({ onClick, children }) => (
<div class="foo">
<button onClick={onClick}>Click Me</button>
{ children }
</div>
)
@developit
developit / esnextbin.md
Last active February 3, 2016 15:52
esnextbin sketch