File: index.html

package info (click to toggle)
node-sqlite3 5.1.5%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,316 kB
  • sloc: sql: 10,174; javascript: 2,570; cpp: 2,569; makefile: 44
file content (14 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
  <head>
    <title>Hello World!</title>
  </head>
  <body>
    <h1>Hello World!</h1>
    Using node-sqlite3:
    <script>
    var sqlite = require('sqlite3');
    document.write(sqlite.VERSION);
    </script>.
  </body>
</html>