nodejs的切换commonjs和esmodule语法

package.json里修改type:

json 复制代码
{
	...
	"type": "commonjs",//commonjs语法
	"type": "module",//esmodule语法
	...
}

commonjs语法:

CommUtils.js文件:

javascript 复制代码
const fs = require('fs');

function readJsonFile(filePath) {
    try {
        const data = fs.readFileSync(filePath, 'utf-8');
        return JSON.parse(data);
    } catch (error) {
        // 处理读取文件或解析 JSON 错误
        console.error(`Error reading JSON file ${filePath}: ${error.message}`);
        return null;
    }
}

function writeJsonFile(filePath, data) {
    // 如果data为null,则不写入文件
    if (data === null || data === undefined || (Array.isArray(data) && data.length === 0)) {
        return;
    }

    try {
        const jsonData = JSON.stringify(data, null, 4);
        fs.writeFileSync(filePath, jsonData, 'utf-8');
    } catch (error) {
        // 处理写入文件错误
        console.error(`Error writing JSON file ${filePath}: ${error.message}`);
    }
}


function bytesToInteger(bytes, isBigEndian) {  
    if (bytes.length < 1 || bytes.length > 8) {  
        throw new Error("bytes.length<1||bytes.length>8");  
    }  
  
    let temp = 0;  
  
    if (isBigEndian) {  
        for (let i = 0; i < bytes.length; i++) { // 从低位到高位  
            if (i === 0) {  
                temp = (bytes[i] & 0xFF) << (i * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << (i * 8));  
            }  
        }  
    } else {  
        for (let i = bytes.length - 1; i >= 0; i--) { // 从高位到低位  
            if (i === (bytes.length - 1)) {  
                temp = (bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8));  
            }  
        }  
    }  
    return temp;  
}

function toHexString(num){
    return '0x'+num.toString(16).toUpperCase().padStart(2,'0');
}
function listToHexString(arr){
    let str = ''
    for(let i=0;i<arr.length;i++){
        str += toHexString(arr[i]) +(i!=arr.length-1?', ':'')
    }
    return str
}

module.exports = {
    readJsonFile,
    writeJsonFile,
    bytesToInteger,
    toHexString,
    listToHexString,
}

使用:

javascript 复制代码
const path = require('path');
const CommUtils = require(path.join(__dirname, 'CommUtils.js'));
console.log(CommUtils.toHexString(111));

esmodule语法:

CommUtils.js文件:

javascript 复制代码
import { readFileSync, writeFileSync } from 'fs';

function readJsonFile(filePath) {
    try {
        const data = readFileSync(filePath, 'utf-8');
        return JSON.parse(data);
    } catch (error) {
        // 处理读取文件或解析 JSON 错误
        console.error(`Error reading JSON file ${filePath}: ${error.message}`);
        return null;
    }
}

function writeJsonFile(filePath, data) {
    // 如果data为null,则不写入文件
    if (data === null || data === undefined || (Array.isArray(data) && data.length === 0)) {
        return;
    }

    try {
        const jsonData = JSON.stringify(data, null, 4);
        writeFileSync(filePath, jsonData, 'utf-8');
    } catch (error) {
        // 处理写入文件错误
        console.error(`Error writing JSON file ${filePath}: ${error.message}`);
    }
}


function bytesToInteger(bytes, isBigEndian) {  
    if (bytes.length < 1 || bytes.length > 8) {  
        throw new Error("bytes.length<1||bytes.length>8");  
    }  
  
    let temp = 0;  
  
    if (isBigEndian) {  
        for (let i = 0; i < bytes.length; i++) { // 从低位到高位  
            if (i === 0) {  
                temp = (bytes[i] & 0xFF) << (i * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << (i * 8));  
            }  
        }  
    } else {  
        for (let i = bytes.length - 1; i >= 0; i--) { // 从高位到低位  
            if (i === (bytes.length - 1)) {  
                temp = (bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8);  
            } else {  
                temp = temp | ((bytes[i] & 0xFF) << ((bytes.length - i - 1) * 8));  
            }  
        }  
    }  
    return temp;  
}

function toHexString(num){
    return '0x'+num.toString(16).toUpperCase().padStart(2,'0');
}
function listToHexString(arr){
    let str = ''
    for(let i=0;i<arr.length;i++){
        str += toHexString(arr[i]) +(i!=arr.length-1?', ':'')
    }
    return str
}

export default {
    readJsonFile,
    writeJsonFile,
    bytesToInteger,
    toHexString,
    listToHexString,
}

使用:

javascript 复制代码
import CommUtils from './CommUtils.js';
console.log(CommUtils.toHexString(111));
相关推荐
web打印社区1 小时前
使用React如何静默打印页面:完整的前端打印解决方案
前端·javascript·vue.js·react.js·pdf·1024程序员节
YiHanXii2 小时前
this 输出题
前端·javascript·1024程序员节
维他命Coco3 小时前
js常见开发学习
javascript
!win !4 小时前
分享二个实用正则
javascript·正则表达式
xw54 小时前
分享二个实用正则
javascript·正则表达式
刘新明19894 小时前
算法还原案例4-OLLVM_MD5
开发语言·前端·javascript·1024程序员节
诚实可靠王大锤4 小时前
react-native实现多列表左右滑动+滚动TabBar悬停
javascript·react native·react.js·1024程序员节
疯狂的沙粒5 小时前
前端开发【工具函数】基于dayjs 封装的DateUtils工具函数,可以直接拿着使用
前端·javascript·vue.js·1024程序员节
jingling5555 小时前
CSS进阶 | 不用一行JS!用纯CSS打造会动的现代化单页应用(3D翻转卡片)
前端·javascript·css
你的电影很有趣5 小时前
lesson76:Vue.js 核心特性详解:事件处理、计算属性与侦听器
javascript·vue·1024程序员节