#
Nodejs
nodejs 操作命令行
child_process方式 javascript const { exec } = require("child_process"); exec("cat index.js", (error, data, getter) = { if(error){ console.log("error",error.message); return; } ...
Posted by spike on 2024-09-27
#
Nodejs
nodejs 爬虫 例子
使用nodejs爬取格言网,解析html并存入sqlite数据库 javascript /** * Shows how to use chaining rather than the `serialize` method. */ "use strict"; var sqlite3 = require('sqlite3').verbose(); var...
Posted by spike on 2024-09-27
#
Nodejs
Nodejs 网页防调试代码
javascript (()= { function ban(){ setInterval(()= {debugger;}, 50); try { ban(); } catch(err){} } ban(); })();
Posted by spike on 2024-06-29
#
Nodejs
nodejs 图片增加数字水印
javascript const dw = require('digital-watermarking'); const fs = require('fs').promises; //EnCode Image add digital watermarking let enCodeFileName = "encode.jpg"; async function Digita...
Posted by spike on 2024-06-04
#
Nodejs
nodejs lazysizes.js 图片延迟加载方案
html代码 cshtml // 引入js文件 script src="lazysizes.min.js" async="" /script // 非响应式 例子 img src="" data-src="image.jpg" class="lazyload" / // 响应式 例子,自动计算合适的图片 img data-sizes=...
Posted by spike on 2024-05-20
#
Nodejs
clash+yakt抓包微信小程序
clash打开tun模式 配置文件 只抓微信小程序和全局代理两个节点 bash 代理设置 proxies: - name: Charles type: http server: 127.0.0.1 port: 8080 根据抓包工具配置 代理组设置 proxy-groups: - name...
Posted by spike on 2024-05-04
#
Nodejs
Nodejs 使用node-rsa对消息进行加密解密
生成密钥对 javascript const NodeRSA = require('node-rsa'); const key = new NodeRSA({b: 512}); const publicKey = key.exportKey('public'); const privateKey = key.exportKey('private'); con...
Posted by spike on 2024-03-19
#
Nodejs
Js sql.js 浏览器中运行sqlite
网址 [https://github.com/sql-js/sql.js](https://github.com/sql-js/sql.js) 简介 sql.js是一个 JavaScript SQL 数据库。它允许您创建关系数据库并完全在浏览器中查询它。您可以在此在线演示中尝试一下。它使用存储在内存中的虚拟数据库文件,因此不会保留对数据库所做的更改。但是,它允许您导入任...
Posted by spike on 2024-01-31
#
Nodejs
Css 限制按钮重复提交
cshtml button{ animation: throttle 2s step-end forwards; } button:active{ animation: none; } @keyframes throttle { from { pointer-events: none; } to { pointer-even...