usopp
v0.1.4
Published
frontend tool
Readme
usopp
Introduction
Tools that can improve the development efficiency of front-end engineers. The current functions are still very simple. For personal use, more people are welcome to join in the development and use.
Install
npm install -g usoppPage
Create a html page template
usopp page index.html .Insert
Insert code snippets into the file, alias is ins
usopp insert cookie ./index.js -r 12A code snippet called cookie is inserted in line 12 of the current file
function setCookie(name, value) {
var Days = 30;
var exp = new Date();
exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000);
document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString();
}
function getCookie(name) {
var arr, reg = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
if (arr = document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
}
function delCookie(name) {
var exp = new Date();
exp.setTime(exp.getTime() - 1);
var cval = getCookie(name);
if (cval != null)
document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString();
}type | desc --|-- cookie | Basic cookie operations, including reading, writing and deleting vue | The basic structure of creating a multi-page vue component | Component template for Vue multi-page application
project
Create different projects based on templates
usopp project simple dianfei ./demo/type | desc --|-- simple | a simple project includes index js and css vuepress | You can create a vuepress project with configuration
