We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 89b4404 + 6eb50ff commit c955f37Copy full SHA for c955f37
README.md
@@ -39,7 +39,7 @@ import sqlite from 'sqlite';
39
40
const app = express();
41
const port = process.env.PORT || 3000;
42
-const dbPromise = sqlite.open('./database.sqlite', { Promise }));
+const dbPromise = sqlite.open('./database.sqlite', { Promise });
43
44
app.get('/post/:id', async (req, res, next) => {
45
try {
@@ -62,7 +62,7 @@ app.listen(port);
62
If you want to enable the [database object cache](https://github.com/mapbox/node-sqlite3/wiki/Caching)
63
64
```js
65
-sqlite.open('./database.sqlite', { cached: true }))
+sqlite.open('./database.sqlite', { cached: true })
66
```
67
68
### Migrations
0 commit comments