All Projects → ilgei → ppo

ilgei / ppo

Licence: Apache-2.0 license
A super small and useful utils library for JavaScript.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to ppo

Jscost.org
JSCost.org - a JavaScript cost visualizer 💸
Stars: ✭ 101 (+573.33%)
Mutual labels:  javascript-tools
Previewimage Mobile
仿微信js-sdk wx.previewImage javascript实现,支持图片预览,滑动切换,双指缩放,图片缓存;Support for picture preview, slide switch, double finger zoom, picture caching
Stars: ✭ 228 (+1420%)
Mutual labels:  javascript-tools
typeless
Typeless: the benefits of TypeScript, without the types
Stars: ✭ 17 (+13.33%)
Mutual labels:  javascript-tools
Pasta Sourcemaps
Pretty (and) Accurate Stack Trace Analysis is an extension to the JavaScript source map format that allows for accurate function name decoding.
Stars: ✭ 112 (+646.67%)
Mutual labels:  javascript-tools
Fermionjs
Visual Prototyping Tool for React Applications
Stars: ✭ 197 (+1213.33%)
Mutual labels:  javascript-tools
slick
Vim/Neovim Colortheme–Truecolor, Stunning, Complete
Stars: ✭ 15 (+0%)
Mutual labels:  javascript-tools
Object Explorer
🔥 A resource to help figure out what JavaScript object method would be best to use at any given time
Stars: ✭ 1,358 (+8953.33%)
Mutual labels:  javascript-tools
twly
Wanna get DRY? Static analysis tool for detecting repeat code.
Stars: ✭ 42 (+180%)
Mutual labels:  javascript-tools
Array Explorer
⚡️ A resource to help figure out what JavaScript array method would be best to use at any given time
Stars: ✭ 2,512 (+16646.67%)
Mutual labels:  javascript-tools
learn-ramda
🐏 Learn ramda, the interactive way
Stars: ✭ 84 (+460%)
Mutual labels:  javascript-tools
Javascript Avanzado En Espanol
Esta es una traducción de la serie de libros de You Don't Know JS (book series), la cual es una serie de 6 libros que navegan profundamente en los mecanismos básicos y avanzados del lenguaje JavaScript. La primera edición de la serie está ahora completa.
Stars: ✭ 118 (+686.67%)
Mutual labels:  javascript-tools
Twitch Watcher
Automatic watching the twitch to get Valorant drop
Stars: ✭ 162 (+980%)
Mutual labels:  javascript-tools
Aec-Library-Website
This is an Open-Source Library Website in which you get Resources to learn different topics, Donate book section to donate your old books, and a Book issue section to keep a record of all the books issued. -HacktoberFest Accepted
Stars: ✭ 52 (+246.67%)
Mutual labels:  javascript-tools
Chakracore Delphi
Delphi and Free Pascal bindings and classes for Microsoft's ChakraCore library
Stars: ✭ 109 (+626.67%)
Mutual labels:  javascript-tools
Awesome-Javascript
A Curated list of Awesome JavaScript Resources
Stars: ✭ 116 (+673.33%)
Mutual labels:  javascript-tools
Jscity
Visualizing JavaScript source code as navigable 3D cities
Stars: ✭ 1,367 (+9013.33%)
Mutual labels:  javascript-tools
Javascript Articles Monthly
JavaScript 文章精选月刊
Stars: ✭ 238 (+1486.67%)
Mutual labels:  javascript-tools
inline.js
Live CSS Helpers with Javascript
Stars: ✭ 36 (+140%)
Mutual labels:  javascript-tools
scrapman
Retrieve real (with Javascript executed) HTML code from an URL, ultra fast and supports multiple parallel loading of webs
Stars: ✭ 21 (+40%)
Mutual labels:  javascript-tools
TheVimIDE
Modern Vim IDE with support for C/C++, Java, Python, Lua, PHP, JavaScript, Ruby and much more ...
Stars: ✭ 33 (+120%)
Mutual labels:  javascript-tools

Overview

npm version gzip size monthly npm installs image

A utility belt library for modern JavaScript.

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 6k, so a library you can use it anytime, anywhere without worrying about anything.

See the latest docs/documentation for a full API reference.

Recommendation

Latest Branch bbo-next

Installation

Install using npm

anix

npm install ppo-cli --save
...
import ppo from 'ppo-cli';

Include in html

This function can only be used in previous version. (version <= 1.3.22) More Change branch or Tags 1.3.19 1.3.20 1.3.22

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

CDN

//mat1.gtimg.com/www/js/libs/ppo.1.3.22.min.js

Usage

var username = ppo.getCookie('username');

ppo.log('hello world!');

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

Why?

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!

License

Trine is ISC licensed. See the LICENSE document for more information.

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