书栈网 · BookStack 本次搜索耗时 0.036 秒,为您找到 52 个相关结果.
  • 2. 引入基于Lodash的JSON database——lowdb

    前言 说明 数据持久化存储的必要性 纯JavaScript数据库的选择 比较 lowdb的初始化 踩坑 1. renderer进程要使用remote模块 2. 开发模式和生产模式初始化路径问题 3. 初始化数据 4. 唯一标识的id字段 初始化完整代码 lowdb的基本操作 创建 读取 更新 删除 lowdb实际使用的坑 ...
  • 非关系型数据库

    非关系型数据库 非关系型数据库 NoSQL 意味着 Not only SQL。面对超大规模和高并发的 SNS(社交网络服务) 类型的 web2.0 纯动态网站,传统的关系型数据库显得有些力不从心,比如表的横向扩展等。NoSQL 数据库作为传统关系型数据库的有效补充,在特定的场景下可以发挥出难以想象的高效率和高性能。主流的非关系型数据库分为键值存储数据...
  • SQLite

    1106 2020-01-31 《NodeJs小册》
    SQLite快速上手 安装sqlite3 连接数据库 引入依赖 初始化数据库 run方法 建表 数据操作 插入 查询 更新 删除 关闭数据库 运行demo 下一步 SQLite快速上手 还记得之前我们学过的 NeDB 数据库吗?它是一款 Nodejs 编写的 NoSQL 嵌入式数据库。今天我们来认识另外一款嵌入式数据库...
  • Recipe: Mixed Auth Endpoints

    FeathersJS Auth Recipe: Create Endpoints with Mixed Auth Setup the Authentication Endpoint Set up a “Mixed Auth” Endpoint Wrapping Up FeathersJS Auth Recipe: Create Endpoint...
  • Writing tests

    Writing tests Unit testing hooks Test database setup Testing services Code coverage Changing the default test directory What’s next? Writing tests Every time we generate ...
  • Uploading files

    File uploads in FeathersJS Our Goals Basic upload with feathers-blob and feathers-client DataURI upload problems Feathers-blob with multipart support. Further improvements ...
  • Recipe: Basic OAuth

    FeathersJS Auth Recipe: Set up Basic OAuth Login How OAuth Works Implementing OAuth with Feathers Setting up the OAuth Provider Configuring Your Application Test Login with OAu...
  • Updating documents

    1599 2020-01-15 《NeDB Document》
    Updating documents Updating documents db.update(query, update, options, callback) will update all documents matching query according to the update rules: query is the sam...
  • 5、db.update(query, update, options, callback)

    5、db.update(query, update, options, callback) 5、db.update(query, update, options, callback) 作用: 根据 update 参数的规则,更新匹配到 query 的结果集。 参数: query: 与 find 和 findOne 中 query 参数的用法...
  • 介绍

    介绍 功能 前序准备 目录结构 安装 全局文件夹 Vue 生态圈 介绍 起手该项目的缘由是因为原项目 已经停止维护了很久,electron的版本号还停滞在1.x版本,所以就在原项目的基础上更新了所有依赖,并且融入了花裤衩大大的vue-admin 的核心代码以及融入了我自己的一些代码。同时如果您打算使用这些核心代码的话,还...