All Projects → youngjuning → wxBase64

youngjuning / wxBase64

Licence: MIT license
🏗️在小程序中使用 js-base64 库

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to wxBase64

Wx Miniprogram Boilerplate
基于Gulp微信小程序开发工作流,支持less样式编写,支持ESLint代码检查等功能
Stars: ✭ 122 (+542.11%)
Mutual labels:  weixin, wxapp, miniapp
Taro scaffold
基于 Taro / dva / redux-saga / react 的微信小程序脚手架,同时集成了 sprite 。
Stars: ✭ 24 (+26.32%)
Mutual labels:  base64, weixin, wxapp
Wechat Weapp Movie
🎬电影推荐 - 微信小程序
Stars: ✭ 1,355 (+7031.58%)
Mutual labels:  weixin, wxapp
Wxapp Webpack Plugin
📦 微信小程序 webpack 插件
Stars: ✭ 185 (+873.68%)
Mutual labels:  weixin, wxapp
Wxapp Redux Starter
微信小程序,集成redux,并且提供了方便快捷的开发环境;内置好奇心日报Demo...
Stars: ✭ 205 (+978.95%)
Mutual labels:  weixin, wxapp
Taro
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
Stars: ✭ 30,230 (+159005.26%)
Mutual labels:  weixin, wxapp
Autocomplete Wx
一款atom插件,支持微信语法高亮和代码补全
Stars: ✭ 47 (+147.37%)
Mutual labels:  weixin, wxapp
Leshare Shop Weapp
基于微信小程序的电商平台,采用原生框架开发
Stars: ✭ 183 (+863.16%)
Mutual labels:  weixin, wxapp
Weapp Qrcode Base64
微信小程序生成二维码的插件,基于base64编码输出二维码,不依赖canvas
Stars: ✭ 100 (+426.32%)
Mutual labels:  base64, wxapp
wx iciba
金山词霸(iciba)基于微信小程序wepy版本,可做wepy学习案例,
Stars: ✭ 29 (+52.63%)
Mutual labels:  weixin, wxapp
Wxopenclub Wxapp Lessons
60 节微信小程序开发视频教程配套源代码
Stars: ✭ 798 (+4100%)
Mutual labels:  weixin, miniapp
wxMD5
📄基于 blueimp/JavaScript-MD5 的支持小程序的MD5加密库
Stars: ✭ 44 (+131.58%)
Mutual labels:  weixin, miniapp
Weixin Java Miniapp Demo
基于Spring Boot 和 WxJava 实现的微信小程序Java后端Demo
Stars: ✭ 779 (+4000%)
Mutual labels:  weixin, wxapp
Tina
💃 一款轻巧的渐进式微信小程序框架
Stars: ✭ 1,153 (+5968.42%)
Mutual labels:  weixin, wxapp
Python Weixin
微信(weixin|wechat) Python SDK 支持开放平台和公众平台 支持微信小程序云开发
Stars: ✭ 746 (+3826.32%)
Mutual labels:  weixin, wxapp
Wux Weapp
🐶 一套组件化、可复用、易扩展的微信小程序 UI 组件库
Stars: ✭ 4,706 (+24668.42%)
Mutual labels:  weixin, wxapp
wxbizdatacrypt
微信小程序加密数据解密算法Go版
Stars: ✭ 132 (+594.74%)
Mutual labels:  weixin, wxapp
Szushudong
微信小程序 - 深大的树洞 2.0 - 基于 WePY
Stars: ✭ 270 (+1321.05%)
Mutual labels:  weixin, wxapp
Wxa Plugin Canvas
小程序海报组件-生成朋友圈分享海报并生成图片
Stars: ✭ 2,692 (+14068.42%)
Mutual labels:  weixin, wxapp
mpvue canvas drawer
[mpvue版本]微信小程序上canvas绘制图片助手,一个json就制作分享朋友圈图片
Stars: ✭ 43 (+126.32%)
Mutual labels:  weixin, wxapp

wxBase64

引入

node.js

let Base64 = require('js-base64').Base64

es6+

import {Base64} from '/utils/base64.min.js'

使用

Base64.encode('youngjuning');  // eW91bmdqdW5pbmc=
Base64.encode('杨俊宁');    // 5p2o5L+K5a6B
Base64.encodeURI('杨俊宁'); // 5bCP6aO85by-

Base64.decode('eW91bmdqdW5pbmc=');  // youngjuning
Base64.decode('5p2o5L+K5a6B');  // 杨俊宁
// note .decodeURI() is unnecessary since it accepts both flavors
Base64.decode('5bCP6aO85by-');  // 杨俊宁

感谢

感谢 dankogai GitHub followers 开发了 js-base64 GitHub stars

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].