TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Before you launch a site, what are final actions you take?

21 点作者 msomers超过 12 年前
I'm putting together a new project that will document tasks we do as we wrap up development before we launch a site - things like final SEO optimization, optimizing HTML, JS, CSS, images, etc.<p>So what things do you do to your server, code, etc. to make sure it's prepped and ready to launch?

4 条评论

kornnflake超过 12 年前
Before launching I do:<p>* Minify Html, Css, Js using the YUI Compressor<p>* Compress images using tinypng.org<p>* Run the tests I wrote during development<p>* Do a final stress test using blitz.io<p>* Generate a XML Sitemap for search engines and edit the robots.txt<p>* Run a spellcheck using checkdog.com<p>* Setup monit to make sure my app restarts after a crash ;)<p>Guess that's it ;) Funny side story: I launched my weekend project receiveee.com last week and failed big when moving to production. During developing I ran the app under admin, but I ofc didn't when moving to production. BUT, my app includes a smtp server which couldn't run on port 25 without admin rights. No error appeared, but not a single mail arrived. Even took me 10 minutes to find the problem :D
评论 #4653357 未加载
JBMmagdaong超过 12 年前
Creating a website for me expresses the hidden creativity in your mind. But before producing a well defined website, you have to consider a lot of factors first. To Begin with, a web designer must first consider how to have an effective “optimization”, it’s the greatest command that you have to remember in creating a website.<p>Next to optimization is get rid of Java script and CSS off to your page in order to have a better and faster coding process which lead to easy managing of your web content. Removing Java Script and CSS well produce greater space that speeds up web progress. Like for example, if you have a 20 KB document, eradicating the java script and CSS will convert this file from 20 KB to 15 KB, thus as I’ve said will then speed up processing.<p>Aside from removing Java and CSS, you should also remember to validate the code of your web according to W3C standards. The purpose of this is to prevent “accessibility issues” which is not good for search engines. Another step is having a browsable navigation link by having an HTML navigational structure that includes footer text, links, DHTML and etc. But remember that using a Flash or Java Script is a big no because this will lead to coding blocks which can be dangerous to your web content.<p>Another thing to consider is your URL constructions. Please refer to Squahhot.com for more information about how Query Strings URL works.<p>With all this processing steps, let us be careful also with our web content. You should not duplicate your web content, or just simply copy paste it from other sources. Doing this will prioritize your ideas, and preventing similarities of content from other sources (that’s if you just copy and paste it).<p>With all this in mind, the last step in creating an effective website is to launch it with “Proper Foundation”. Try to check if you have applied all the necessary means such as XML sitemaps, RSS Feeds, stuff like that. A properly founded website should have no issues with regards to loading a page, browser compatibility, SEO elements, robots.txt validation and etc.
评论 #4664353 未加载
sskates超过 12 年前
Careful of spending too much time on this, it reeks of premature optimization. You'll have much more knowledge of what's important to spend time on after you launch the site than before.
评论 #4654585 未加载
kevinconroy超过 12 年前
If you mean before initial launch of your site, do load testing. Nothing worse than crashing on day 0.