LoginSignup
1
3

More than 5 years have passed since last update.

Node.js/Expressで静的ファイル(ここではPDFビューア)を見せるには

Posted at

全然大したことをやってないのですが、いつかオフライン・キャッシュなどと連携して応用するかもしれないのでメモしておきます。

Mozillaが開発したPDFビューア「pdf.js」のサンプルをNode.jsで表示します。

スクリーンショット 2013-08-22 11.32.54.png

$ express pdfjsRichSample
$ cd pdfjsRichSample
$ npm install
$ cd public
$ git clone git://github.com/mozilla/pdf.js

index.html にPDFビューアへのリンクを付けます。

index.jade
extends layout

block content
  h1= title
  p Welcome to #{title}
  p
    a(href='pdf.js/web/viewer.html') PDF Viewer

以上です。


ブログやってます:PAPA-tronix !

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3