markdown rest-api使用node.js和sqlite3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown rest-api使用node.js和sqlite3相关的知识,希望对你有一定的参考价值。

var sqlite3 = require('sqlite3').verbose();
var db = new sqlite3.Database('data/demodb02');

db.serialize(function() {
    db.run("CREATE TABLE IF NOT EXISTS counts (key TEXT, value INTEGER)");
    db.run("INSERT INTO counts (key, value) VALUES (?, ?)", "counter", 0);
});



var express = require('express');
var restapi = express();

restapi.get('/data', function(req, res){
    db.get("SELECT value FROM counts", function(err, row){
        res.json({ "count" : row.value });
    });
});

restapi.post('/data', function(req, res){
    db.run("UPDATE counts SET value = value + 1 WHERE key = ?", "counter", function(err, row){
        if (err){
            console.err(err);
            res.status(500);
        }
        else {
            res.status(202);
        }
        res.end();
    });
});


restapi.listen(3000);

console.log("Submit GET or POST to http://localhost:3000/data");
{
  "name": "restapi",
  "version": "1.0.0",
  "description": "",
  "main": "restapi.js",
  "dependencies": {
    "express": "^4.13.1",
    "sqlite3": "^3.0.9"
  },
  "devDependencies": {},
  "scripts": {
    "start": "node restapi.js"
  },
  "author": "Varunendra Pratap Singh",
  "license": "ISC"
}
step to run
1: npm install
2: npm install https://github.com/mapbox/node-sqlite3/tarball/master
3: node restapi.js

以上是关于markdown rest-api使用node.js和sqlite3的主要内容,如果未能解决你的问题,请参考以下文章

如何在“Zapier 代码”中编写节点获取(Rest-API)?

如何使用 httppost/rest-api 从 keycloak 获取用户列表

如何使用 rest-api 执行 Spring Cloud 任务

错误响应上的 REST-API 不同的内容类型

DICOM 查询(/检索)如何使用 REST-API 工作

使用 Rest-API 查询 Azure SQL 数据库