search

Home  >  Q&A  >  body text

前端 - 想用nodejs建一个个人博客网站,遇到挺多问题和疑惑,希望得到大神的解答,不求全面

  1. express 相对于直接用 nodejs 建站的好处在哪?

  2. express 用的是 jade 格式的模板,可以直接用 html 文件吗?

  3. jade 位于 express 项目的 views 文件夹下,为什么看到其他地方的人回答:“要是用 html 代替 jade,要放在 public 文件夹,但是页面就变成静态的了”,静态网页与动态网页的区别?

  4. 使用 nodejs 的互联网公司,也是用 express 框架吗?也是用的 jade 吗?

  5. 一般什么情况下用静态网页,什么情况下用动态网页?

  6. 个人博客需要数据库吗?只是在上面写一些文章附带一些图片,如果用使用 mongodb 还是 MySQL


2016/5/31 22:49 增加的:
7.写博客直接在html文档里写?还是用innerHtml()?还是用其他方法?

会用html html5 css css3 javascript jquery。nodejs本地实验过,不过不真正在服务器上跑起来感觉离会还很远呀,比较新的网上盛传的nodejs学习文档基本看过一遍。最近自己利用fanqiang的vps主机简单搭了一个express,远程访问成功了。博客雏形早就写好了,用的标准html+css+javascript+jquery切页面,本来想直接用nodejs启个服务,但是看到网上基本都是express做的,很少直接用nodejs。于是打算把做的雏形和express结合。又遇到jade、ejs这些问题,有点困惑。

大家讲道理大家讲道理2796 days ago703

reply all(11)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 13:57:54

    I write JS and play Nodejs in my spare time;

    Express is still very convenient;
    jade and ejs have no qualitative difference, only the way of expression is different; suddenly I found that I haven’t touched the views directory for a long time; I simulated a lowest-level template myself to dynamically render page; no matter which directory the static page is placed in, it will be loaded as a static resource; finally, I found that this is much faster than jade, ejs and so on;
    My personal website uses Nodejs+MongoDB, welcome to discuss, Let’s learn together!
    http://famanoder.com/bokes

    reply
    0
  • Cancelreply