Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added categories and descriptions for owned packages #81

Merged
merged 3 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Looking for something to build? Check out [the suggestions list][suggestions].
- [Testing](#testing)
- [Text](#text)
- [Time](#time)
- [Validation](#validation)
- [Web frameworks](#web-frameworks)
- [Websites](#websites)
- [Templates](#templates)
Expand Down Expand Up @@ -83,6 +84,7 @@ Looking for something to build? Check out [the suggestions list][suggestions].

### Configuration

- [dot_env](https://github.com/aosasona/dotenv) - [📚](https://hexdocs.pm/dot_env/) - Load environment variables from files
- [envoy](https://github.com/lpil/envoy) - [📚](https://hexdocs.pm/envoy/) - A zero dependency cross platform Gleam package for reading environment variables
- [gleam_dotenv](https://github.com/Grubba27/gleam_dotenv) - [📚](https://hexdocs.pm/gleam_dotenv/) - dotenv for Gleam
- [glenvy](https://github.com/maxdeviant/glenvy) - [📚](https://hexdocs.pm/glenvy/) - A pleasant way to interact with your environment.
Expand All @@ -98,13 +100,15 @@ Looking for something to build? Check out [the suggestions list][suggestions].
### Databases

- [gleam_pgo](https://github.com/gleam-experiments/pgo) - [📚](https://hexdocs.pm/gleam_pgo/) - Gleam bindings to the PGO PostgreSQL client
- [migrant](https://github.com/trulyao/migrant) - [📚](https://hexdocs.pm/migrant/) - [ALPHA] Database migrations for SQLite in Gleam
- [mungo](https://github.com/massivefermion/mungo) - [📚](https://hexdocs.pm/mungo/) - A MongoDB driver for Gleam (formerly gleam_mongo)
- [radish](https://github.com/massivefermion/radish) - [📚](https://hexdocs.pm/radish/) - A Redis client for Gleam
- [sqlight](https://github.com/lpil/sqlight) - [📚](https://hexdocs.pm/sqlight/) - Use SQLite from Gleam!

### Email

- [gleam_sendgrid](https://github.com/lpil/gleam_sendgrid) - [📚](https://hexdocs.pm/gleam_sendgrid/) - Send emails from Gleam with SendGrid
- [plunk](https://github.com/aosasona/plunk.gleam) - [📚](https://hexdocs.pm/plunk/) - A Gleam library to send emails, manage contacts etc. using the Plunk API
- [zeptomail](https://github.com/lpil/zeptomail) - [📚](https://hexdocs.pm/zeptomail/) - A wrapper for ZeptoMail's transactional email API

### Erlang and OTP
Expand Down Expand Up @@ -159,6 +163,7 @@ Looking for something to build? Check out [the suggestions list][suggestions].

### HTTP Clients

- [falcon](https://github.com/trulyao/falcon) - [📚](https://hexdocs.pm/falcon/) - A smoother way to make HTTP requests in Gleam with Axios-like methods
- [gleam_fetch](https://github.com/gleam-lang/fetch) - [📚](https://hexdocs.pm/gleam_fetch/) - Make HTTP requests in Gleam JavaScript with Fetch
- [gleam_hackney](https://github.com/gleam-lang/hackney) - [📚](https://hexdocs.pm/gleam_hackney/) - Gleam bindings to the Hackney HTTP client
- [gleam_httpc](https://github.com/gleam-lang/httpc) - [📚](https://hexdocs.pm/gleam_httpc/) - Gleam bindings to Erlang's built in HTTP client, httpc
Expand Down Expand Up @@ -237,6 +242,10 @@ Looking for something to build? Check out [the suggestions list][suggestions].

- [birl](https://github.com/massivefermion/birl) - [📚](https://hexdocs.pm/birl/) - Date / Time handling for Gleam

### Validation

- [crossbar](https://github.com/aosasona/crossbar) - [📚](https://hexdocs.pm/crossbar/) - Data validation library in pure Gleam

### Web frameworks

- [wisp](https://github.com/gleam-wisp/wisp) - [📚](https://hexdocs.pm/wisp/) - A practical web framework for Gleam
Expand All @@ -261,6 +270,7 @@ Web applications written in Gleam.
- [gleam-lang/example-todomvc](https://github.com/gleam-lang/example-url-shortener) - A serverside only implementation of Todo MVC written in Gleam!
- [gleam-lang/example-echo-server](https://github.com/gleam-lang/example-echo-server) - An example Gleam web application.
- [gleam-lang/packages](https://github.com/gleam-lang/packages) - The Gleam package index website.
- [aosasona/jsorm](https://github.com/aosasona/jsorm) - A minimal JSON explorer in Gleam + HTMX.

## Tools

Expand All @@ -284,7 +294,7 @@ Web applications written in Gleam.
Websites with Gleam related content.

- [gleam.run](https://gleam.run) - Gleam's website.
- [tour.gleam.run](https://gleam.run) - Gleam's interactive tour and turorial.
- [tour.gleam.run](https://gleam.run) - Gleam's interactive tour and tutorial.

### Courses

Expand Down
4 changes: 2 additions & 2 deletions packages/crossbar.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "crossbar"
description = "Experimental data validation library in pure Gleam"
description = "Data validation library in pure Gleam"
docs_url = "https://hexdocs.pm/crossbar/"
repo_url = "https://github.com/aosasona/crossbar"
category = ""
category = "Validation"
2 changes: 1 addition & 1 deletion packages/dot_env.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name = "dot_env"
description = "Load environment variables from files"
docs_url = "https://hexdocs.pm/dot_env/"
repo_url = "https://github.com/aosasona/dotenv"
category = ""
category = "Configuration"
4 changes: 2 additions & 2 deletions packages/falcon.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "falcon"
description = "A smoother way to send HTTP requests in Gleam, an abstraction over Hackney - see the readme for important notes!"
description = "A smoother way to make HTTP requests in Gleam with Axios-like methods"
docs_url = "https://hexdocs.pm/falcon/"
repo_url = "https://github.com/trulyao/falcon"
category = ""
category = "HTTP Clients"
2 changes: 1 addition & 1 deletion packages/migrant.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name = "migrant"
description = "[ALPHA] Database migrations for SQLite in Gleam"
docs_url = "https://hexdocs.pm/migrant/"
repo_url = "https://github.com/trulyao/migrant"
category = ""
category = "Databases"
4 changes: 2 additions & 2 deletions packages/plunk.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "plunk"
description = "Library for interacting with Plunk's API (https://useplunk.com) in Gleam - supports both the Erlang and Javascript targets"
description = "A Gleam library to send emails, manage contacts etc. using the Plunk API"
docs_url = "https://hexdocs.pm/plunk/"
repo_url = "https://github.com/aosasona/plunk.gleam"
category = ""
category = "Email"
3 changes: 2 additions & 1 deletion src/awesome.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Web applications written in Gleam.
- [gleam-lang/example-todomvc](https://github.com/gleam-lang/example-url-shortener) - A serverside only implementation of Todo MVC written in Gleam!
- [gleam-lang/example-echo-server](https://github.com/gleam-lang/example-echo-server) - An example Gleam web application.
- [gleam-lang/packages](https://github.com/gleam-lang/packages) - The Gleam package index website.
- [aosasona/jsorm](https://github.com/aosasona/jsorm) - A minimal JSON explorer in Gleam + HTMX.

## Tools

Expand All @@ -119,7 +120,7 @@ Web applications written in Gleam.
Websites with Gleam related content.

- [gleam.run](https://gleam.run) - Gleam's website.
- [tour.gleam.run](https://gleam.run) - Gleam's interactive tour and turorial.
- [tour.gleam.run](https://gleam.run) - Gleam's interactive tour and tutorial.

### Courses

Expand Down
Loading