====== Javascript ====== * [[javascript:기초|Javascript 기초]] * [[javascript:esbuild|esbuild]] ===== runtime ===== * [[node.js|node.js]] * [[deno|deno]] * [[bun|bun]] ===== type hint ===== * [[javascript:jsdoc|jsdoc]] ===== 기본 템플릿 ===== jQuery 사용시의 기본 JavaScript 파일 형태 (function ($) { "use strict"; // 컴파일 타임 오류 검증. // ... 여기에 실제 코드 ... })(jQuery); ===== 문서화 ===== * [[http://nevir.github.com/groc/|groc]] * [[http://jashkenas.github.com/docco/|docco]] ===== 참조 ===== * [[https://developer.mozilla.org/ko/docs/Web/JavaScript|Mozilla JavaScript]] * [[https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript|Reintroduction to JavaScript]] * [[https://github.com/kriskowal/es5-shim|ES5 Shim for legacy javascript engine]] * [[http://code.google.com/p/jsdoc-toolkit/|JSDoc-Toolkit]] : Javascript 문서화 * [[https://github.com/jsdoc3/jsdoc|JSDoc 3]] * [[http://opentutorials.org/javascript_reference/|Javascript Reference]] * [[Javascript/TemplateWithScript]] * [[http://juhoi.tistory.com/45|[번역] JavaScript Garden]] * [[https://github.com/nzakas/computer-science-in-javascript|nzakas/computer-science-in-javascript - GitHub]] * [[http://engineering.socialcast.com/2011/06/javascript-memory-management/|JavaScript Memory Management]] * [[http://ssssnakes.com/smoke/|Smoke.js]] 레이어기반 Alert/Prompt/Confirm Dialogs * [[http://stackoverflow.com/questions/11246/best-resources-to-learn-javascript|JavaScript 배우기 좋은 자료들]] * [[http://jonraasch.com/blog/10-javascript-performance-boosting-tips-from-nicholas-zakas|10 Javascript Performance Boosting Tips from Nicholas Zakas | Jon Raasch's Blog]] * [[http://www.turnjs.com/|HTML5 페이지 넘김 효과]] * [[http://tommoor.github.com/tinycon/|Tinycon - Favicon Alert Bubbles]] * [[http://twitter.github.com/hogan.js/|hogan.js Javascript Template Engine from Twitter]] * [[http://cryptico.wwwtyro.net/|Cryptico]] Javascript Encryption. * [[http://shichuan.github.com/javascript-patterns/|JavaScript pattern and antipattern collection]] * [[http://addyosmani.com/resources/essentialjsdesignpatterns/book/|Essential JavaScript And jQuery Design Patterns]] * [[http://dogfeet.github.com/articles/2011/1317873491.html|ECMAScript 5 Strict Mode, JSON, and More]] * [[http://stackoverflow.com/questions/359788/how-to-execute-a-javascript-function-when-i-have-its-name-as-a-string|How to execute a JavaScript function when I have its name as a string]] * [[http://coding.smashingmagazine.com/2012/11/05/writing-fast-memory-efficient-javascript/|Writing Fast, Memory-Efficient JavaScript]] * [[https://github.com/rwldrn/idiomatic.js/tree/master/translations/ko_KR| 자연스럽고 일관성 있게 자바스크립트 코딩하는 원칙]] * [[http://bonsaiden.github.io/JavaScript-Garden/ko/|Javascript Garden]] * [[http://blog.cheol.net/post/9208860498|JavaScript의 함정]] * [[http://blog.javascripting.com/2015/03/18/defensive-javascript/|Defensive JavaScript? Yes, Please!]] * [[https://felixgerschau.com/javascript-memory-management/|JavaScript's Memory Management Explained]] * [[https://github.com/getify/You-Dont-Know-JS|getify/You-Dont-Know-JS: A book series on JavaScript. @YDKJS on twitter.]] * [[https://github.com/airbnb/javascript|airbnb/javascript: JavaScript Style Guide]]