├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # Compiled binary addons (http://nodejs.org/api/addons.html) 20 | build/Release 21 | 22 | # Dependency directory 23 | # Commenting this out is preferred by some people, see 24 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 25 | node_modules 26 | 27 | # Users Environment Variables 28 | .lock-wscript 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 PatrickJS 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # list-of-morphic-javascript 2 | 3 | 4 | Type | Definition 5 | ------------------------| ------------- 6 | Isomorphic JavaScript | The same code can be run on the server and in the browser. 7 | Endomorphic JavaScript | The server/client code can be run with another server/client runtime. 8 | Epimorphic JavaScript | The same code can be run in all the browsers. Also known as epic JavaScript. 9 | Homeomorphic JavaScript | Isomorphic JavaScript that is continuously deployed. 10 | Catamorphic JavaScript | Isomorphic JavaScript, where the server code is minified before it is run in the browser. 11 | Homotopic JavaScript | Isomorphic JavaScript, where the server code is transpiled before it is run the browser. 12 | Anthropic JavaScript | Where the code must be as it is because we are here to see it. 13 | Homeopathic JavaScript | Only contains trace errors, but they have the effectiveness of full strength bugs. 14 | Metamorphic JavaScript | Code that is minified and mangled into an extremely dense form that can run on the server or the browser. 15 | Isographic JavaScript | JavaScript is any JavaScript written by mimicking the style of another programmer. 16 | Hypomorphic JavaScript | Where code is written within the same global scope and relies on mutation. 17 | Mightymorphic JavaScript | Where code assembles together from many smaller files asynchronously. 18 | Polymorphic JavaScript | Where the code has enough love for many repos. 19 | Xenomorphic JavaScript | Where the code is written in CoffeeScript. 20 | Theomorphic JavaScript | Where code becomes God-like in its expression and divine power. 21 | Anthropomorphic JavaScript | Where you swear your code has human characteristics aka a personality 22 | Pseudomorphic JavaScript | Where there is more boilerplate code than functional code 23 | Zoomorphic JavaScript | Where your code contains animal characteristics and shape 24 | Hydromorphic JavaScript | Where code is created with high amounts of stress 25 | --------------------------------------------------------------------------------