The idea here is that most of us should _already_ know _most_ of what is on this list. But there just might be one or two items you haven't really looked into before, don't fully understand, or maybe never even heard of. **Interface and User Experience** - Be aware that browsers implement standards inconsistently and make sure your site works reasonably well across all major browsers. At a minimum test against a recent gecko engine ([Firefox][1]), a Webkit engine ([Safari][2], [Chrome][3], and some mobile browsers), your supported IE browsers (take advantage of the [Application Compatibility VPC Images][4]), and [Opera][5]. Also consider how browsers render your site in different operating systems. - Consider how people might use the site other than from the major browsers: cell phones, screen readers and search engines, for example. — Some accessibility info: [WAI][6] and [Section508][7], Mobile development: [MobiForge][8] - Staging: How to deploy updates without affecting your users. <a href="http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site#73970">Ed Lucas's answer</a> has some comments on this. - Don't display unfriendly errors directly to the user - Don't put users' email addresses in plain text as they will get spammed to death - [Build well-considered limits into your site][9] - This also belongs under Security. - Learn how to do [progressive enhancement][10] **Security** - It's a lot to digest but the [OWASP development guide][11] covers Web Site security from top to bottom - Know about [SQL injection][12] and how to prevent it - Never trust user input (cookies count as user input too!) - <strike>Encrypt</strike> Hash and salt passwords rather than storing them plain-text. - Don't try to come up with your own fancy authentication system: it's such an easy thing to get wrong in subtle and untestable ways and you wouldn't even know it until _after_ you're hacked. - Know the [rules for processing credit cards][13]. See this question as well: <http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m> - Use [SSL][14]/[HTTPS][15] for login and any pages where sensitive data is entered (like credit card info) - How to resist session hijacking - Avoid [cross site scripting][16] (XSS) - Avoid [cross site request forgeries][17] (XSRF) - Keep your system(s) up to date with the latest patches - Make sure your database connection information is secured. - Keep yourself informed about the latest attack techniques and vulnerabilities affecting your platform. - Read [The Google Browser Security Handbook][18] **Performance** - Implement caching if necessary, understand and use [HTTP caching](http://www.mnot.net/cache_docs/) properly - Optimize images - don't use a 20KB image for a repeating background - Learn how to [gzip content][19] - Combine/concatenate multiple stylesheets or multiple script files to reduce number of browser connections and improve GZip ability to compress duplications between files - Use a separate domain for static content like images or styles that don't need access to cookies, because all cookies for a domain and it's subdomains are sent with every request to the domain and it's subdomains. - Take a look at the [Yahoo Exceptional Performance][20] site, lots of great guidelines including improving front-end performance and their [YSlow][21] tool. [Google page speed][22] is another tool for performance profiling. Both require [firebug][23] installed. - Use [CSS Image Sprites][24] for small related images like toolbars (see the the "minimize http requests" point) - Busy web sites should consider [splitting components across domains][25]. Specifically... - Static content (ie, images, css, javascript) should go in a separate domain _[that does not use cookies][26]._ - Minimize the total number of http requests required for a browser to render the page. **SEO (Search Engine Optimization)** - Use "search engine friendly" URLS, i.e. use "example.com/pages/45-article-title" instead of "example.com/index.php?page=45" - Don't use links that say "click here". You're wasting an SEO opportunity and it makes things harder for people with screen readers. - Have an [XML sitemap][27] - Use [`<link rel="canonical" ... />`][28] when you have multiple urls that point to the same content - Use [Google Webmaster Tools][29] and [Yahoo Site Explorer][30] - Install [Google Analytics][31] right at the start - Know how [robots.txt][32] and search engine spiders work - Rewrite requests asking for yourdomain.com to www.yourdomain.com to prevent splitting the google ranking between both sites - Know that there can be bad behaving spiders out there - If you have non-text content look into Google's sitemap extensions for video etc. There is some good information about this in <a href="http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site#167608">Tim Farley's answer</a>. **Technology** - Understand [HTTP][33] and things like GET, POST, sessions, cookies, and what it means to be "stateless". - Write your [XHTML][34]/[HTML][35] and [CSS][36] according to the [W3C specifications][37] and make sure they [validate][38]. The goal here is to avoid browser quirks modes and as a bonus make it much easier to work with non-standard browsers like screen readers and mobile devices. - Understand how JavaScript is processed in the browser. - Understand how JavaScript, style sheets, and other resources used by your page are loaded and consider their impact on *perceived* performance. It may be appropriate in some cases to [move scripts to the bottom][39] of your pages. - Understand how the JavaScript sandbox works, especially if you intend to use iframes. - Be aware that JavaScript can and will be disabled, and that AJAX is therefore an extension not a baseline. Even if most normal users leave it on now, remember that NoScript is becoming more popular, mobile devices may not work as expected, and google won't run your javascript when indexing the site. - Learn the [difference between 301 and 302 redirects][40] (this is also an SEO issue). - Learn as much as you possibly can about your deployment platform - Consider using a [Reset Style Sheet][41] - Consider javascript frameworks (such as [jQuery][42], [MooTools][43], or [Prototype][44]), which will hide a lot of the browser differences when using javascript for DOM manipulation **Bug fixing** - Understand you'll spend 20% of the time coding and 80% of it maintaining so code accordingly - Set up a good error reporting solution - Have some system for people to contact you with suggestions and criticsm. - Document how the application works for future support staff and people performing maintenance - Make frequent backups! (And make sure those backups are functional) <a href="http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site#73970">Ed Lucas's answer</a> has some advice. Lots of stuff omitted not necessarily because they're not useful answers, but because they're either too detailed, out of scope, or go a bit too far for someone looking to get an overview of the things they should know. If you're one of those people you can read the rest of the answers to get more detailed information about the things mentioned in this list. If I get the time I'll add links to the various answers that contain the things mentioned in this list if the answers go into detail about these things. Please feel free to edit this as well, I probably missed some stuff or made some mistakes. [1]: http://firefox.com/ [2]: http://www.apple.com/safari/ [3]: http://www.google.com/chrome [4]: http://www.microsoft.com/Downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&displaylang=en [5]: http://www.opera.com/ [6]: http://www.w3.org/WAI/ [7]: http://www.section508.gov/ [8]: http://mobiforge.com/ [9]: http://www.codinghorror.com/blog/archives/001228.html [10]: http://en.wikipedia.org/wiki/Progressive_enhancement [11]: http://www.owasp.org/index.php/Category:OWASP_Guide_Project [12]: http://en.wikipedia.org/wiki/SQL_injection [13]: https://www.pcisecuritystandards.org/ [14]: http://www.mozilla.org/projects/security/pki/nss/ssl/draft302.txt [15]: http://en.wikipedia.org/wiki/Https [16]: http://en.wikipedia.org/wiki/Cross-site_scripting [17]: http://en.wikipedia.org/wiki/Cross-site_request_forgery [18]: http://code.google.com/p/browsersec/wiki/Main [19]: http://developer.yahoo.com/performance/rules.html#gzip "gzip content" [20]: http://developer.yahoo.com/performance/ [21]: http://developer.yahoo.com/yslow/ [22]: http://code.google.com/speed/page-speed/docs/rules_intro.html [23]: http://getfirebug.com/ [24]: http://alistapart.com/articles/sprites [25]: http://developer.yahoo.com/performance/rules.html#split [26]: http://blog.stackoverflow.com/2009/08/a-few-speed-improvements/ [27]: http://www.sitemaps.org/ [28]: http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html [29]: http://www.google.com/webmasters/ [30]: http://siteexplorer.search.yahoo.com/ [31]: http://www.google.com/analytics/ [32]: http://en.wikipedia.org/wiki/Robots_exclusion_standard [33]: http://www.ietf.org/rfc/rfc2616.txt [34]: http://www.w3.org/TR/xhtml1/ [35]: http://www.w3.org/TR/REC-html40/ [36]: http://www.w3.org/TR/CSS2/ [37]: http://www.w3.org/TR/ [38]: http://validator.w3.org/ [39]: http://developer.yahoo.net/blog/archives/2007/07/high_performanc_5.html [40]: http://www.bigoakinc.com/blog/when-to-use-a-301-vs-302-redirect/ [41]: http://stackoverflow.com/questions/167531/is-it-ok-to-use-a-css-reset-stylesheet [42]: http://jquery.com/ [43]: http://mootools.net/ [44]: http://www.prototypejs.org/