js res

作者: 日不落000 | 来源:发表于2018-07-26 10:31 被阅读19次

  • cross-env 跨平台设置和使用环境变量

设置

{
  "scripts": {
    "build": "cross-env NODE_ENV=production webpack --config build/webpack.config.js"
  }
}

使用

const NODE_ENV = process.env.NODE_ENV;
if(NODE_ENV==='production'){
}else{
}

参考:
https://www.jianshu.com/p/696bd579f9ec
https://blog.csdn.net/qq_26927285/article/details/78105510
https://github.com/kentcdodds/cross-env


  • decimal.js 金额计算

A Decimal is immutable in the sense that it is not changed by its methods.

0.3 - 0.1                     // 0.19999999999999998
x = new Decimal(0.3)
x.minus(0.1)                  // '0.2'
x                             // '0.3'

参考:
https://github.com/MikeMcl/decimal.js
http://mikemcl.github.io/decimal.js/
JS判断是不是Decimal类型(正则实现) https://www.cnblogs.com/xachary/p/3631178.html


  • crypto

JavaScript library of crypto standards.

加解密

https://github.com/brix/crypto-js


相关文章

  • js res

    cross-env 跨平台设置和使用环境变量 设置 使用 参考:https://www.jianshu.com/p...

  • res.json()

    问题描述 前端向后端发请求,返回res,打印res的值,使用await res.json(),但不清楚res.js...

  • BootStrap响应式网格布局学习笔记

    Bootstrap: HTML, CSS, and JS framework for developing res...

  • 微信JS-SDK分享

    1 引入JS文件http://res.wx.qq.com/open/js/jweixin-1.2.0.js, 2 ...

  • 微信支付 前端代码

    内置对象方法: js sdk 1.引入js http://res.wx.qq.com/open/js/jweixi...

  • Angular JS controller

    Angular.JS: views sharing same controller, model data res...

  • 使用微信分享功能

    1.在需要调用JS接口的页面引入如下JS文件,http://res.wx.qq.com/open/js/jweix...

  • 11

    http://kzcdn.itc.cn/res/kzeditor/js/third-party/zeroclipb...

  • 微信分享功能

    微信分享文档步骤一:引入JS文件在需要调用JS接口的页面引入如下JS文件,(支持https):http://res...

  • Node.js中request+response数据结构分解(文

    一个简单的Node.js应用,只需要如下两行代码即可构建。 let fn = (req,res)=>res.end...

网友评论

    本文标题:js res

    本文链接:https://www.haomeiwen.com/subject/xxwvmftx.html