https://github.com/bitemyapp/esqueleto

Last synced: about 1 month ago

Repository metadata:

New home of Esqueleto, please file issues so we can get things caught up!


Owner metadata:


Committers metadata

Last synced: about 2 months ago

Total Commits: 627
Total Committers: 89
Avg Commits per committer: 7.045
Development Distribution Score (DDS): 0.611

Commits in past year: 6
Committers in past year: 5
Avg Commits per committer in past year: 1.2
Development Distribution Score (DDS) in past year: 0.667

Name Email Commits
Felipe Lessa f****a@g****m 244
Matt Parsons p****t@g****m 102
Chris Allen c****a@b****m 34
Fintan Halpenny r****f@t****e 26
Alberto Valverde a****o@t****t 20
Michael Snoyman m****l@s****m 15
Jose Duran j****o@g****m 11
Ben Levy b****7@g****m 10
Danny B d****l@g****m 9
João Cristóvão j****o@g****m 8
Eric Easley e****c@f****m 7
Erik de Castro Lopo e****d@m****m 7
Philipp Balzarek p****k@g****m 7
Esteban Ibarra e****2@h****m 5
Maximilian Tagher f****r@g****m 5
Rebecca Turner r****t@s****s 5
Sam Anklesaria a****y@a****t 5
Isaac van Bakel i****b@v****o 4
tim t****m@x****m 3
brady.ouren b****n@g****m 3
Thiago Rodrigues de Paula t****p@g****m 3
Kris Jenkins k****s@g****m 3
Chris Coffey c****3@g****m 3
Harry Garrood h****y@g****e 2
Matt Audesse m****t@m****m 2
Mitchell Rosen m****n@g****m 2
Mitsutoshi Aoe m****e@f****n 2
Paul Berens p****6@g****m 2
Harpo Reder r****o@p****h 2
Greg Weber g****g@g****o 2
and 59 more...

Issue and Pull Request metadata

Last synced: about 1 month ago


Package metadata

hackage: esqueleto

esqueleto is a bare bones, type-safe EDSL for SQL queries that works with unmodified persistent SQL backends. Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend. Most kinds of errors committed when writing SQL are caught as compile-time errors---although it is possible to write type-checked esqueleto queries that fail at runtime. persistent is a library for type-safe data serialization. It has many kinds of backends, such as SQL backends (persistent-mysql, persistent-postgresql, persistent-sqlite) and NoSQL backends (persistent-mongoDB). While persistent is a nice library for storing and retrieving records, including with filters, it does not try to support some of the features that are specific to SQL backends. In particular, esqueleto is the recommended library for type-safe JOINs on persistent SQL backends. (The alternative is using raw SQL, but that's error prone and does not offer any composability.) Currently, SELECTs, UPDATEs, INSERTs and DELETEs are supported. Not all SQL features are available, but most of them can be easily added (especially functions), so please open an issue or send a pull request if you need anything that is not covered by esqueleto on https://github.com/bitemyapp/esqueleto. The name of this library means "skeleton" in Portuguese and contains all three SQL letters in the correct order =). It was inspired by Scala's Squeryl but created from scratch.

  • Homepage: https://github.com/bitemyapp/esqueleto
  • Licenses: BSD-3-Clause
  • Latest release: 3.3.2 (published almost 5 years ago)
  • Last Synced: 2024-11-11T02:41:44.521Z (about 1 month ago)
  • Versions: 142
  • Dependent Packages: 12
  • Dependent Repositories: 273
  • Downloads: 134,397 Total
  • Rankings:
    • Downloads: 0.921%
    • Dependent repos count: 1.498%
    • Dependent packages count: 2.204%
    • Average: 2.454%
    • Stargazers count: 3.656%
    • Forks count: 3.99%
  • Maintainers (4)

Dependencies

esqueleto.cabal hackage
  • aeson >=1.0
  • attoparsec >=0.13 && <0.15
  • base >=4.8 && <5.0
  • blaze-html *
  • bytestring *
  • conduit >=1.3
  • containers *
  • monad-logger *
  • persistent >=2.13 && <3
  • resourcet >=1.2
  • tagged >=0.2
  • template-haskell *
  • text >=0.11 && <1.3
  • time >=1.5.0.1 && <=1.13
  • transformers >=0.2
  • unliftio *
  • unordered-containers >=0.2
  • QuickCheck * test
  • aeson * test
  • attoparsec * test
  • base >=4.8 && <5.0 test
  • blaze-html * test
  • bytestring * test
  • conduit * test
  • containers * test
  • esqueleto * test
  • exceptions * test
  • hspec * test
  • hspec-core * test
  • monad-logger * test
  • mtl * test
  • mysql * test
  • mysql-simple * test
  • persistent * test
  • persistent-mysql * test
  • persistent-postgresql * test
  • persistent-sqlite * test
  • postgresql-simple * test
  • resourcet * test
  • tagged * test
  • template-haskell * test
  • text * test
  • time * test
  • transformers * test
  • unliftio * test
  • unordered-containers * test
examples/esqueleto-examples.cabal hackage
  • base *
  • esqueleto *
  • monad-control *
  • monad-logger *
  • mtl *
  • persistent >=2.12
  • persistent-postgresql *
  • transformers-base *
  • unliftio-core *
.github/workflows/haskell.yml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • harmon758/postgresql-action v1 composite
  • haskell/actions/setup v1 composite
  • mysql 8.0 docker
test/new-join-compiler-errors/new-join-compiler-errors.cabal hackage
  • base >=4.7 && <5
  • esqueleto *
  • new-join-compiler-errors *
  • persistent *
  • persistent-template *