All Projects β†’ drawcall β†’ Ppo

drawcall / Ppo

Licence: mit
ppo is a super small and useful utils library for JavaScript 🐝🐜

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Ppo

Utils Everywhere
ζ•΄η†εΉΆζ”Άι›†ε„η§εΈΈη”¨ηš„θ¦†η›–ι’εΉΏηš„ε·₯ε…·η±»
Stars: ✭ 329 (+213.33%)
Mutual labels:  utils, tool
Outils
πŸš€ ε‰η«―δΈšεŠ‘δ»£η ε·₯ε…·εΊ“
Stars: ✭ 1,721 (+1539.05%)
Mutual labels:  utils, tool
Dart Code Metrics
Software analytics tool that helps developers analyse and improve software quality.
Stars: ✭ 96 (-8.57%)
Mutual labels:  tool
Json2dart
Stars: ✭ 103 (-1.9%)
Mutual labels:  tool
Suohai
Audio input/output source lock/switcher for macOS.
Stars: ✭ 100 (-4.76%)
Mutual labels:  tool
Ontopreplica
A real-time always-on-top β€œreplica” of a window of your choice (on Windows).
Stars: ✭ 1,336 (+1172.38%)
Mutual labels:  tool
Ionic Collection
🀘 Looking for about Ionic Framework?
Stars: ✭ 101 (-3.81%)
Mutual labels:  utils
Matrix Commander
simple but convenient CLI-based Matrix client app for sending and receiving
Stars: ✭ 90 (-14.29%)
Mutual labels:  tool
Tailor
An OS X status bar app to quickly check for new releases at Xcodereleases.com
Stars: ✭ 104 (-0.95%)
Mutual labels:  tool
Snitch
Snitch is the tool that keeps your tests under surveillence.
Stars: ✭ 100 (-4.76%)
Mutual labels:  tool
Npm Try
πŸš† Quickly try npm packages without writing boilerplate code.
Stars: ✭ 103 (-1.9%)
Mutual labels:  tool
Rundeck Cli
CLI tool for Rundeck
Stars: ✭ 98 (-6.67%)
Mutual labels:  tool
Scelight
The source code of the Scelight project with all its modules.
Stars: ✭ 97 (-7.62%)
Mutual labels:  tool
Jerryutil
java常用ε·₯ε…·η±»ι›†εˆ
Stars: ✭ 102 (-2.86%)
Mutual labels:  utils
Visual Center
Proposed tool to better align logos in the center of a container.
Stars: ✭ 1,338 (+1174.29%)
Mutual labels:  tool
Icmethoddigger
An easy way to print almost methods including private methods (supported arm64 architecture devices).
Stars: ✭ 103 (-1.9%)
Mutual labels:  tool
Go Mygen
Quickly generate CURD and documentation for operating MYSQL.etc
Stars: ✭ 94 (-10.48%)
Mutual labels:  tool
Evntouchiddemo
πŸ†” iOS fingerprint login process implementation
Stars: ✭ 98 (-6.67%)
Mutual labels:  tool
Redis Cui
Simple, visual command line tool for redis
Stars: ✭ 101 (-3.81%)
Mutual labels:  tool
D4n155
OWASP D4N155 - Intelligent and dynamic wordlist using OSINT
Stars: ✭ 105 (+0%)
Mutual labels:  tool

logo

Overview

Every frontend developer has written his own utils library, and we often write methods that are easily forgotten and highly used. ppo is a super small and useful utils library for JavaScript. It and lodash underscore lazy.js almost no coupling. I sorted out the most frequently used function functions in everyday development. These functions are almost ubiquitous in your development, and they are not found in lodash underscore.

Most of the code comes from the stackoverflow site in the high score answer, here to pay tribute to the original author.

ppo little poor, gzip less than 3k, so a library you can use it anytime, anywhere without worrying about anything.

Documentation

View the document please visit https://drawcall.github.io/ppo/

Installation

Install using npm

anix

npm install ppo --save

...
import ppo from 'ppo';

Include in html

<script type="text/javascript" src="js/ppo.min.js"></script>

Usage

import ppo from "ppo";

const username = ppo.getCookie("username");

if (ppo.isIOS()) console.log("this is ios");

ppo.loadjs('http://x.com/a.js', callback);

ppo.getUrlParam('a' ,'http://xxx.com?a=3&b=sd23s');

const id = ppo.setTimesout(word => { 
    console.log(word); 
    console.log(this);  // log {index: 3 ,times: 8, over: false}  
}, 1000/20, 8, 'helloworld')

Why ppo?

When you use react, vue, angular often need to write a lot of utils method. But lodash and underscore these libraries are not omnipotent. So you have to find a lot of tool library. Use ppo, you can solve the daily development of many small problems. Simple and compact!

Download

License

ppo is released under the MIT License. http://www.opensource.org/licenses/mit-license

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].