ugo alternatives and similar packages
Based on the "Utilities" category.
Alternatively, view ugo alternatives based on common mentions on social networks and blogs.
-
项目文档
基于vite+vue3+gin搭建的开发基础平台(支持TS,JS混用),集成jwt鉴权,权限管理,动态路由,显隐可控组件,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器等开发必备功能。 -
excelize
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets -
xlsx
(No longer maintained!) Go (golang) library for reading and writing XLSX files. -
godotenv
A Go port of Ruby's dotenv library (Loads environment variables from .env files) -
go-funk
A modern Go utility library which provides helpers (map, find, contains, filter, ...) -
gorequest
GoRequest -- Simplified HTTP client ( inspired by nodejs SuperAgent ) -
goreporter
A Golang tool that does static analysis, unit testing, code review and generate code quality report. -
Kopia
Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. -
gojson
Automatically generate Go (golang) struct definitions from example JSON -
create-go-app
✨ Create a new production-ready project with backend, frontend and deploy automation by running one CLI command! -
spinner
Go (golang) package with 90 configurable terminal spinner/progress indicators. -
filetype
Fast, dependency-free Go package to infer binary file types based on the magic numbers header signature -
mole
CLI application to create ssh tunnels focused on resiliency and user experience. -
boilr
:zap: boilerplate template manager that generates files or directories from template repositories -
EaseProbe
A simple, standalone, and lightweight tool that can do health/status checking, written in Go. -
beaver
💨 A real time messaging system to build a scalable in-app notifications, multiplayer games, chat apps in web and mobile apps. -
go-underscore
Helpfully Functional Go - A useful collection of Go utilities. Designed for programmer happiness. -
JobRunner
Framework for performing work asynchronously, outside of the request flow -
mimetype
A fast Golang library for media type and file extension detection, based on magic numbers
Static code analysis for 29 languages.
Do you think we are missing an alternative of ugo or a related project?
Popular Comparisons
README
ugo
Simple and expressive toolbox written with love and care in Go.
Deeply inspired by underscore.js and has the same syntax and behaviour
Fully covered with tests, no surprises
Quick start
Installation
go get -u github.com/alxrm/ugo
Import
import (
u "github.com/alxrm/ugo"
)
Usage
It works with some special type, named Seq
, which is an alias for []interface{}
So let's make some
// creates the new string Seq
strSeq := u.Seq{ "nineteen", "eigth", "four" } // ["nineteen" "eigth" "four"]
// creates the new Seq with given length
emptySeq := u.NewSeq(0); // []
// copies reflectively all of the values from int slice to Seq
intSlc := []int{ 4, 6, 2, 7, 8, 10, 9, 9, 120, 10, 2, 17 }
intSeq := u.From(intSlc, len(intSlc)) // [4 6 2 7 8 10 9 9 120 10 2 17]
Actually reflection approach in u.From
can have an impact on performance :snail: so use it with care.
Okay, now we have some Seq's,
What if I want to leave only unique elements in my int slice?
Go and get it :zap:
initialSeq := u.Seq{ 4, 6, 2, 7, 8, 10, 9, 9, 120, 10, 2, 17 }
uniquedSeq := u.Uniq(initial, func(l, r u.Object) int { return l.(int) - r.(int) })
fmt.Println(uniquedSeq) // [4 6 2 7 8 10 9 120 17]
And I want to leave only odd ones
Nice choice! :fire:
oddsSeq := u.Filter(uniquedSeq, func(cur, _, _ u.Object) bool { return cur.(int) % 2 != 0 })
fmt.Println(oddsSeq) // [7 9 17]
Well, sometimes you may want to use many method one by one, and it can be a bit ugly
Here we are, fluent syntax, just like in underscore.js :rocket:
initialSeq := u.Seq{ 4, 6, 2, 7, 8, 10, 9, 9, 120, 10, 2, 17 }
res := u.Chain(initialSeq).Uniq(func(l, r u.Object) int {
return l.(int) - r.(int)
}).Filter(func(cur, _, _ u.Object) bool {
return cur.(int) % 2 != 0
}).Value()
fmt.Println(res) // [7 9 17]
Try it by yourself!
Explore all of the features and get your slice routine done faster
Contribute
We highly appreciate any of your pull requests and issues!
Be welcome :coffee:
Some of the TODOs:
- [x] Aliases from underscore
- [x] Chaining like map(...).uniq(...).result()
- [ ] Better documentation
License
The MIT License (MIT)
Copyright (c) 2016 Alexey Derbyshev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*Note that all licence references and agreements mentioned in the ugo README section above
are relevant to that project's source code only.