• Stars
    star
    281
  • Rank 141,466 (Top 3 %)
  • Language
    JavaScript
  • Created over 8 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

πŸš€ Detailed description + diagram of the Open Source Technology Stack we use for dwyl projects.

Technology Stack

The software and systems we use to build the dwyl platform.

la-rel-easter-KuCGlBXjH_o-unsplash

Why?

As a team of people using technology to make digital products,
it's essential to be unambiguous about the stack/tools we use,
so that everyone is clear what we all need to master.

If anything is unclear or you have any questions please ask.

What?

This document + diagrams describe the full "PETAL" Technology Stack we use for dwyl products/projects.

Each element in our stack was carefully selected based on its individual merits.
When assembled into a seamless "machine", the stack is unrivaled for developer productivity and world-class quality!

The PETAL Stack

dwyl-technology-stack-diagram-PETAL

"PETAL" is an acronym1 for the following elements:

Phoenix

Phoenix is a Web Application Framework that does not compromise on speed, reliability or maintainability! Phoenix is the "successor" to the incredibly popular "Ruby-on-Rails" framework. Built from scratch by highly experienced engineers who worked on/with Rails. It solves all of the speed/socket/scaling/concurrency, issues people felt when building/using Rails apps. The list of benefits Phoenix has over (virtually every) other Web Frameworks is extensive.
Please see: dwyl/learn-phoenix-framework#our-top-10-reasons-why-phoenix

Phoenix the "Most Loved" Framework in 2022

Phoenix tops the list of "Most Loved" Frameworks on the 2022 StackOverflow Community Survey ❀️

https://survey.stackoverflow.co/2022/#section-most-loved-dreaded-and-wanted-web-frameworks-and-technologies

stackoverflow-most-loved-framework-phoenix

Elixir

Elixir is the functional programming language used by the Phoenix framework. Elixir is a beautiful language written from scratch to be friendly, concise and efficient. Yes, Elixir not as "mainstream" as JavaScript, Java, C# or PHP, but the adoption is growing rapidly and most importantly many experienced developers are gravitating towards and describing it as their "most wanted" Also a language's popularity has more to do with the intellectual inertia people/companies have because they allow existing (legacy) codebases to dictate future development; i.e. sunk cost bias. see: dwyl/learn-elixir#key-advantages

Elixir is #2 in 2022

Elixir is the 2nd "Most Loved" programming language:

https://survey.stackoverflow.co/2022/#section-most-loved-dreaded-and-wanted-programming-scripting-and-markup-languages

stackoverflow-survey-elixir

This is a good measure of how much people enjoy working in the language. And as we all know people who enjoy their work are better at doing it!

Tailwind CSS

Tailwind is the most sane way of creating a beautiful web app UI that can easily be extended by a team of people without fear of one person's change "breaking" another feature. Unlike "traditional" CSS which - as it's name implies - encourages "cascading" of styles, Tailwind makes the style of each component specific and local to that component. see: dwyl/learn-tailwind

Alpine.js

Alpine.js is a lightweight library for enhancing interactions in a web application. It's declarative, responsive and easy to learn. Alphine.js plays well with LiveView for progressive enhancements. see: dwyl/learn-alpine.js

LiveView

LiveView is a radically simplified way of building realtime web apps with significantly less code.


Beginner Tutorials?

We have crafted a "Complete Beginner's Guide" for each element in the stack, so that we:

  • Document our collective learning while we are building projects.
    (because as humans we forget fast unless we capture it immediately!)
  • Share our knowledge with other people so we can
    • Help to train (potential) new team members as quickly/effectively as possible.
    • Collectively iterate on our knowledge and "level-up" as a team!
    • "Onboard" the client team (who may want/need) to support/maintain the codebase/project if/when we seamlessly "hand over".
    • Inform the wider community of both technical and non-technical people ("stake holders") who are generally interested in understanding the project.
    • Enlighten other teams/organisations/agencies/etc. we aren't in direct contact with that there is a "more fun" way of building software!
  • Make everyone's life easier/better by having a "launch pad" for rapid learning!

We have written several beginner tutorials that span our technology stack and tools we actively use in development.

Phoenix/Elixir:

Here are a few of our learning repositories pertaining to Phoenix and Phoenix Liveview.

  1. Learn Elixir: dwyl/learn-elixir
  2. Learn Phoenix: dwyl/learn-phoenix-framework
  3. Counter (Liveview): dwyl/phoenix-liveview-counter-tutorial
  4. Todo List (Liveview): dwyl/phoenix-liveview-todo-list-tutorial
  5. Stopwatch (Liveview): dwyl/phoenix-liveview-stopwatch
  6. Chat: dwyl/phoenix-chat-example
  7. Chat (Liveview): dwyl/phoenix-liveview-chat-example
  8. Realtime cursor tracking (Liveview): dwyl/phoenix-liveview-realtime-cursor-tracking-tutorial
  9. Papertrail and Phoenix: dwyl/phoenix-papertrail-demo
  10. Flutter and Phoenix: dwyl/flutter-phoenix-channels-demo

Small Projects That Showcase Phoenix

We have a couple of "internal" (but Open Source) projects that use Phoenix and serve as a good showcase for the stack:

  1. Labels: dwyl/labels
  2. Hits: dwyl/hits

Elixir Utilities

  1. Useful: dwyl/useful - utility library.
  2. Content: dwyl/content - content negotiation.

Flutter

In this section you will find learning repositories where you can learn Flutter and how to use it with other technologies.

  1. Learn Flutter: dwyl/learn-flutter
  2. Learn Dart: dwyl/learn-dart
  3. Supabase and Flutter: dwyl/supabase-flutter-demo
  4. Counter: dwyl/flutter-counter-example
  5. Stopwatch: dwyl/flutter-stopwatch-tutorial
  6. Todo list: dwyl/flutter-todo-list-tutorial
  7. Bloc: dwyl/flutter-bloc-tutorial

Miscellaneous

In this section, we will list a few repos that explain concepts and tools that we are actively using while developing our app.

  1. Payment processing: dwyl/learn-payment-processing
  2. API design: dwyl/learn-api-design
  3. Test-driven development dwyl/learn-tdd
  4. Insomnia API client: dwyl/learn-insomnia
  5. Github Pages deployment: dwyl/learn-github-pages

Our MVP

We have built a fully working MVP version of our App! Check it out at dwyl/mvp!

Database?

The reason we do not specify our Database in the "PETAL" Acronym is that Phoenix allows us to use any Relational Database.

By abstracting the data layer using "Ecto" the application is "decoupled" from the database.
This means that if a client asks us to deploy to MySQL or Microsoft SQL Server
(e.g. because they already have in-house capability for maintaining one of these databases)
we can easily accommodate that without re-writing any of the Phoenix app!

We Prefer PostgreSQL

postgres logo

Our "standard" (preference) @dwyl is for Postgres. see: dwyl/learn-postgresql
Postgres is the most "mature" Open Source Relational Database. It's 100% Free (including all "advanced" features) and has been deployed and battle-tested in every environment from AWS to "Bare Metal" and Google Cloud to Microsoft Azure!

Many well-known/successful apps rely on Postgres as their main database.
NOT that you should adopt a particular technology based on who else is using it,
but it's good to know that plenty of teams are getting excellent results with Postgres!

List of Organizations Using PostgreSQL

We have used most of the "popular" Relational Databases. e.g: MySQL, Microsoft SQL Server, Oracle and Aurora, etc; all RDBMS have their pros/cons.
The reason we like/use Postgres is because the community is superb. There is a great "bank" of answered questions on StackOverflow and new questions get answered fast.

Operating System?

A "traditional" LAMP stack includes the Linux Operating System in the name.
The "PETAL" stack runs on any (desktop/server) Operating System
and can be deployed to any "cloud" infrastructure provider.

While we have a strong preference for Unix (e.g. FreeBSD) or Linux (e.g. Ubuntu or CentOS) we know that
both Phoenix and Postgres run on almost any environment including Microsoft Windows Desktop & Server.

Continuous Integration

We are using GitHub actions for Continuous Integration / Continuous Deployment.

For an example of this, including automatic deployment to Fly.io see: .github/workflows/ci.yml

Deployment

We make a point of deploying our work as soon as there is something worth showing to the target audience of "end users" so that we can get feedback as early as possible.

Lately we have been using Fly.io for deploying our Apps. The experience is superb. ❀️

Application Server

The Phoenix Application Server is hosted on (a minimum of) Two Linux Servers.
(often many more which send messages one another to distribute load as a cluster).
The "cluster" is managed by Erlang's "Supervisor". The Erlang Supervisor is the "Gold Standard" in infrastructure management, having been used by Telecoms companies for over 20 years in production with some Telcos reporting 99.9999999% ("nine nines") of "up-time".

It's far more likely that the infrastructure provider (e.g. AWS/Azure) will have a fault in their network/datacenter than an Erlang server "crashing".

SSL/TLS Encryption

All communication is over secure/encrypted channel (by default at all times)
to protect the data/privacy of people using the applications we make.

We recommend using the "Let's Encrypt" service for SSL Certificates it's 100% Free (and provided by a Non-Profit foundation)
to help you get started, we wrote a step-by-step setup guide for apps deployed to Heroku: SSL-certificate-step-by-step-setup-instructions.md




tl;dr

There is no shortage of options available for Technology Stack!
See: https://www.google.com/search?q=technology+stack&tbm=isch
So, how did we arrive at the conclusion that PETAL was "the one" for us...?
We already had a really good Node.js Stack which worked well for us and our clients. so . . .

Why Try a "New Stack"?

Why Try Something New When We're Already Good with the "Old"...?

Our reasoning for considering an alternative approach/stack for building web apps was fueled by our curiousity and "shoshin".

"The important thing is not to stop questioning.
Curiosity has its own reason for existence.
"
~ Albert Einstein

In November 2016 we (once again) questioned our assumptions, re-examined and surveyed the "landscape" of "emerging trends" in web app development. We were pleasantly surprised delighted to see the amazing progress made by the people in the Elixir / Phoenix community! Please see: dwyl/learn-phoenix-framework#questions

Making Difficult Decisions

One of the most "difficult decisions" you will make in your "career" is which technologies and tools you will use to deliver the desired solution/benefit to the "end users".

Most people have the Tech/Tools decision made for them by the company/organisation/boss they work for (e.g: Java -> Spring, Ruby -> Rails or PHP -> WordPress or Laravel, etc.) This is because most companies already have an existing app in "production", which you have been hired to extend.

Occasionally you will get the chance to build an app from "scratch"
however most of the time someone else (the "Architect") will make the decision for what "stack" to use on your behalf, so you will still be stuck with someone else's choices. If you are incredibly lucky the "Architect(s)" will have done their homework: surveyed the latest industry trends and investigated the "new and promising" technologies e.g: Stack Overflow "Most Wanted" list.

Most "Application Architects" will pick one of these 3 options:

  1. Go with what you (already) know, use existing stack with a minor variation because it's "easy to deploy" with the existing infrastructure and will not get questioned by the "Executives", DevOps team or "Compliance" department. This is the easy choice and nobody ever got "fired" for sticking with what they know "works".

  2. Buy the whizz-bang all-in-one solution sold to them by the "Consultant" from "Big Vendor XYZ" (outsource the thinking to a sales person who last wrote code in the 90's ... seems like a great idea ... NOT!)

  3. Be "Bold" and try "Popular Framework XYZ" and hire an external team to build the new magic app. Then attempt to "up-skill" the internal team to maintain the code written by the consultants.

None of these choices is optimal, all have different levels of risk/reward. The "hardest" choice to make is the one where you try something totally different. The reality is that very few people have the time/resources/mindset/inclination to take a step back and open their minds to the idea that there might be a "better tool" for the job than the one they are currently using.

Toast Knife Analogy

Imagine Want to Make Yourself Some Toast.
The "user story" for this would be:

As a peckish person
I want a slice of tasty toast
So that I can have some crunch for my brunch!

( let's assume that you bought a loaf of bread from a baker
to reduce the options for solutions for simplicity
i.e. not baking from scratch!
)

The "traditional" way to "solve" the challenge of making toast:

  1. Cut bread with bread knife
  2. Put sliced bread in toaster
  3. Turn on toaster for pre-determined amount of time
  4. Wait patiently for toaster to make toast

But ... what if instead the "old" way we just described, someone invented a way to toast the bread while slicing it...?!

b4df5698-914e-4dd2-b271-9c00881b6599-274-0000001c8c73f018_tmp 9f9fc56d-b22a-4e77-b60f-f3619254023b-274-0000001ce1dcb22a_tmp

Simply by using the "New Tool" for the job - in this case the "Toast Knife" - you can simplify the process to a single step!
This is the power of being open to considering "New" Tools/Technologies!
Get the same result in fewer than half the "steps"!

Focussing on Long-term Benefits

The short-term cost of learning a new stack (programming language or framework) is time, We contend that the 1 week learning time (depending on the focus of learners) will pay for itself within 1 month (often sooner if the team is large/distributed because the structure offered by Phoenix means everyone working on the project has a disciplined approach to adding new features)

Further Reading on Long-term Thinking

Contextualising Technology Adoption (Mini History Lesson)

In 1996 Nokia introduced the "Communicator" and was a incredible revolutionary innovation! Internet, Email and Fax in your Pocket!!

nokia-communicator

Nokia continued to dominate the mobile phone industry/market for the next decade producing the best-selling 5110 and 3310 some of us are old enough to remember!
But by being "ahead" Nokia was unable to see the "contender" coming "out of nowhere" to challenge their position.

In 2006 nobody was making/buying "smart" mobile phones with glass touch screens that ran "apps" ...
in January 2007 Steve Jobs introduced the iPhone and literally changed the industry!

Steve Jobs introduces iphone

The dominant/incumbent mobile phone maker Nokia had 49% market share in 2007 mocked Apple's lack of features, poor battery life and high price.
By 2013 Nokia had 3% Market Share (for new device sales) and was sold off "for parts" to Microsoft while Apple was the most valuable company in history!

Many people still buy "feature phones" (the polite name for a device that does not have any "smart" functionality!)
but few people can convincingly argue that the reason they don't have a smart phone is because they don't want one;
over 90% 16-24 year olds own a smart phone and that number is expected to reach 100% by 2025 ...
ask someone in their 20's if they would go "back" to using a non-smart phone and see what they say ... "No Way!!"
they laugh uncomfortably and admit that: "My Smartphone is my Life!"
We feel exactly the same about "old technology". Sure the "old way still works", but if you can inexpensively switch
to something demonstrably better in every aspect, why would you stick with the "feature phone" of web frameworks...?

It's like taking the Bus to work when there's a perfectly good teleporter right next to the bus stop!! Madness.

We are not suggesting that everyone is going to suddenly flock to the "PETAL" stack the way people adopted smart phones. This is merely an illustration that when a technology has a specific/measurable advantage to it's users the adoption can be fast.

In the case of programming languages or application frameworks, moving one framework to another is a much more difficult decision.

But one thing is for sure we are going to use the "smart phone" even if other people insist on using the "brick".

Does it Scale?!?

If you are new to web development, please focus on UX and forget about "scale"!

Unless you work somewhere that already has "millions of users" and
your team cannot consider anything that does not support a million concurrent connections...!

But let's face it, most people have imaginary scaling issues not real ones.
discussing "scalability" before you have 10,000 paying customers is a waste of time!!

Stop worrying about "scalability" and instead focus on building something useful
focus on User Experience not ("backend") scalability!

The good news is that Phoenix "scales" really well!
see: phoenixframework.org/blog/the-road-to-2-million-websocket-connections

Forget about "scaling" until you have made something people want and are paying for!
Then use the pile of cash you got from your product to hire "engineers" to make it available to more people!!



What About Full Stack JavaScript?

We still think that "Full Stack JavaScript" is a compelling proposition especially for people who are just starting out! It allows you to write one programming language on both the client and server; we get it! However we have learned from years of experience that it requires a lot more code and maintenance than PETAL for an inferior result in terms of UX/performance and developer productivity.

Alternative Databases?

If we were to consider an alternative to SQL, we would use RethinkDB: https://rethinkdb.com
But we are relieved that the Phoenix team is focussed on PostgreSQL because that eliminates
the "ambiguity" or "discussion" of "which database" to use! Postgres is a fantastic "general purpose"
store that has a rich ("structured") query language that lets you JOIN data!!
Also, now that Citus DB is Open Source we know that Postgres can easily handle billions of writes per day!

Radical Simplicity

β€œIf it takes an hour to figure out what’s going on, well,
that’s an hour that wasn’t spent doing something else more useful and interesting
."
~ Rachel Kroll

Please read: https://www.radicalsimpli.city
In the site/manifesto Stephan makes the case that Apps in 2021 have gotten far too complex:

radical-simplicity-complexity

He advocates for a return to basics:

image

No need for microservices message queues or other complex tech that is only relevant to 0.1% of mega scale companies: image

We agree.


If by some luck our product reaches the point where we need mega scale (millions of people creating billions of items) we know that our chosen stack will scale just fine.

Before then the complexity will only slow us down and reduce the chances of success.

Other Tech/Tools?

We have written about our choice of programming language extensively in: learn-elixir/issues/102.

Our use of Elixir is for a very specific reason: we are building fault-tolerant realtime systems. For the type of App we are building, Erlang/OTP is the undisputed king on the server side. We could use almost any other language/framework, but it would be a lot more work for an inferior result.

If we need to build a specific feature requested by a person using our product, then we will 100% consider a technology that enables us to deliver it.

How to Propose NEW Tech/Tools?

The way to propose a specific tech/tool is simple: open an issue describe how the tech/tool will help us build a specific feature that has been requested by a person using our product.

Proactively create a new repo in the dwyl org to capture your own learning of the tech/tool you are proposing. e.g: dwyl?q=learn

Once you have invested the time to learn the tech/tool beyond "hello world" and are confident that it will help us achieve a specific end-goal, then please make the case for it.

HitCount

More Repositories

1

english-words

πŸ“ A text file containing 479k English words for all your dictionary/word-based projects e.g: auto-completion / autosuggestion
Python
9,337
star
2

learn-json-web-tokens

πŸ” Learn how to use JSON Web Token (JWT) to secure your next Web App! (Tutorial/Example with Tests!!)
JavaScript
4,178
star
3

learn-to-send-email-via-google-script-html-no-server

πŸ“§ An Example of using an HTML form (e.g: "Contact Us" on a website) to send Email without a Backend Server (using a Google Script) perfect for static websites that need to collect data.
HTML
3,047
star
4

repo-badges

⭐ Use repo badges (build passing, coverage, etc) in your readme/markdown file to signal code quality in a project.
HTML
2,831
star
5

learn-tdd

βœ… A brief introduction to Test Driven Development (TDD) in JavaScript (Complete Beginner's Step-by-Step Tutorial)
JavaScript
2,698
star
6

start-here

πŸ’‘ A Quick-start Guide for People who want to dwyl ❀️ βœ…
1,725
star
7

learn-elixir

πŸ’§ Learn the Elixir programming language to build functional, fast, scalable and maintainable web applications!
Elixir
1,586
star
8

learn-travis

😎 A quick Travis CI (Continuous Integration) Tutorial for Node.js developers
JavaScript
1,251
star
9

Javascript-the-Good-Parts-notes

πŸ“– Notes on the seminal "JavaScript the Good Parts: by Douglas Crockford
1,173
star
10

aws-sdk-mock

🌈 AWSomocks for Javascript/Node.js aws-sdk tested, documented & maintained. Contributions welcome!
JavaScript
1,079
star
11

learn-aws-lambda

✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
JavaScript
1,035
star
12

book

πŸ“— Our Book on Full-Stack Web Application Development covering User Experience (UX) Design, Mobile/Offline/Security First, Progressive Enhancement, Continuous Integration/Deployment, Testing (UX/TDD/BDD), Performance-Driven-Development and much more!
Rust
816
star
13

hapi-auth-jwt2

πŸ”’ Secure Hapi.js authentication plugin using JSON Web Tokens (JWT) in Headers, URL or Cookies
JavaScript
795
star
14

learn-hapi

β˜€οΈ Learn to use Hapi.js (Node.js) web framework to build scalable apps in less time
HTML
794
star
15

phoenix-chat-example

πŸ’¬ The Step-by-Step Beginners Tutorial for Building, Testing & Deploying a Chat app in Phoenix 1.7 [Latest] πŸš€
Elixir
721
star
16

learn-tachyons

😍 Learn how to use Tachyons to craft beautiful, responsive and fast UI with functional CSS!
HTML
670
star
17

learn-phoenix-framework

πŸ”₯ Phoenix is the web framework without compromise on speed, reliability or maintainability! Don't settle for less. πŸš€
Elixir
639
star
18

learn-nightwatch

🌜 Learn how to use Nightwatch.js to easily & automatically test your web apps in *real* web browsers.
JavaScript
585
star
19

javascript-todo-list-tutorial

βœ… A step-by-step complete beginner example/tutorial for building a Todo List App (TodoMVC) from scratch in JavaScript following Test Driven Development (TDD) best practice. 🌱
JavaScript
532
star
20

learn-elm

🌈 discover the beautiful programming language that makes front-end web apps a joy to build and maintain!
HTML
472
star
21

learn-redux

πŸ’₯ Comprehensive Notes for Learning (how to use) Redux to manage state in your Web/Mobile (React.js) Apps.
HTML
446
star
22

learn-devops

🚧 Learn the craft of "DevOps" (Developer Operations) to Deploy your App and Monitor it so it stays "Up"!
Shell
411
star
23

hits

πŸ“ˆ General purpose hits (page views) counter
Elixir
397
star
24

hapi-socketio-redis-chat-example

πŸ’¬ Real-time Chat using Hapi.js + Socket.io + Redis Pub/Sub (example with tests!!)
Elm
363
star
25

hapi-typescript-example

⚑ Hapi.Js + Typescript = Awesomeness
TypeScript
351
star
26

phoenix-liveview-counter-tutorial

🀯 beginners tutorial building a real time counter in Phoenix 1.7.7 + LiveView 0.19 ⚑️ Learn the fundamentals from first principals so you can make something amazing! πŸš€
Elixir
345
star
27

learn-istanbul

🏁 Learn how to use the Istanbul JavaScript Code Coverage Tool
JavaScript
339
star
28

learn-redis

πŸ“• Need to store/access your data as fast as possible? Learn Redis! Beginners Tutorial using Node.js πŸš€
JavaScript
291
star
29

phoenix-ecto-encryption-example

πŸ” A detailed example for how to encrypt data in an Elixir (Phoenix v1.7) App before inserting into a database using Ecto Types
Elixir
269
star
30

learn-elasticsearch

πŸ” Learn how to use ElasticSearch to power a great search experience for your project/product/website.
Elixir
265
star
31

home

🏑 πŸ‘©β€πŸ’» πŸ’‘ home is where you can [learn to] build the future surrounded by like-minded creative, friendly and [intrinsically] motivated people focussed on health, fitness and making things people and the world need!
244
star
32

elixir-auth-google

πŸ‘€Minimalist Google OAuth Authentication for Elixir Apps. Tested, Documented & Maintained. Setup in 5 mins. πŸš€
Elixir
228
star
33

learn-docker

🚒 Learn how to use docker.io containers to consistently deploy your apps on any infrastructure.
Dockerfile
220
star
34

learn-elm-architecture-in-javascript

πŸ¦„ Learn how to build web apps using the Elm Architecture in "vanilla" JavaScript (step-by-step TDD tutorial)!
JavaScript
206
star
35

learn-environment-variables

πŸ“Learn how to use Environment Variables to keep your passwords and API keys secret. πŸ”
JavaScript
201
star
36

learn-postgresql

🐘 Learn how to use PostgreSQL and Structured Query Language (SQL) to store and query your relational data. πŸ”
JavaScript
195
star
37

learn-tape

βœ… Learn how to use Tape for JavaScript/Node.js Test Driven Development (TDD) - Ten-Minute Testing Tutorial
JavaScript
185
star
38

sendemail

πŸ’Œ Simplifies reliably sending emails from your node.js apps using AWS Simple Email Service (SES)
JavaScript
181
star
39

phoenix-todo-list-tutorial

βœ… Complete beginners tutorial building a todo list from scratch in Phoenix 1.7 (latest)
Elixir
171
star
40

decache

:shipit: Delete Cached node_modules useful when you need to "un-require" during testing for a fresh state.
JavaScript
151
star
41

quotes

πŸ’¬ a curated list of quotes that inspire action + code that returns quotes by tag/author/etc. πŸ’‘
Elixir
150
star
42

learn-heroku

🏁 Learn how to deploy your web application to Heroku from scratch step-by-step in 7 minutes!
Python
149
star
43

learn-chrome-extensions

🌐 Discover how to build and deploy a Google Chrome Extension for your Project!
139
star
44

labels

🏷 Sync GitHub Labels from any Source to Target Repositories for Consistency across all your projects!
Elixir
136
star
45

ISO-27001-2013-information-technology-security

πŸ” Probably the most boring-but-necessary repo on GitHub. If you care about the security/privacy of your data...! βœ…
136
star
46

learn-ab-and-multivariate-testing

πŸ†Ž Tutorial on A/B and multivariate testing βœ”οΈ
135
star
47

web-form-to-google-sheet

A simple example of sending data from an ordinary web form straight to a Google Spreadsheet without a server.
HTML
133
star
48

app

Clear your mind. Organise your life. Ignore distractions. Focus on what matters.
Dart
133
star
49

auth

πŸšͺ πŸ” UX-focussed Turnkey Authentication Solution for Web Apps/APIs (Documented, Tested & Maintained)
Elixir
124
star
50

learn-circleci

βœ… A quick intro to Circle CI (Continuous Integration) for JavaScript developers.
121
star
51

learn-regex

⁉️ A simple REGular EXpression tutorial in JavaScript
120
star
52

learn-react

"The possibilities are numerous once we decide to act and not react." ~ George Bernard Shaw
HTML
108
star
53

learn-aws-iot

πŸ’‘ Learn how to use Amazon Web Services Internet of Things (IoT) service to build connected applications.
JavaScript
101
star
54

env2

πŸ’» Simple environment variable (from config file) loader for your node.js app
JavaScript
100
star
55

phoenix-liveview-chat-example

πŸ’¬ Step-by-step tutorial creates a Chat App using Phoenix LiveView including Presence, Authentication and Style with Tailwind CSS
Elixir
98
star
56

how-to-choose-a-database

How to choose the right dabase
93
star
57

imgup

πŸŒ… Effortless image uploads to AWS S3 with automatic resizing including REST API.
Elixir
88
star
58

contributing

πŸ“‹ Guidelines & Workflow for people contributing to our project(s) on GitHub. Please ⭐ to confirm you've read & understood! βœ…
85
star
59

javascript-best-practice

A collection of JavaScript Best Practices
83
star
60

learn-amazon-web-services

⭐ Amazing Guide to using Amazon Web Services (AWS)! ☁️
83
star
61

range-touch

πŸ“± Use HTML5 range input on touch devices (iPhone, iPad & Android) without bloatware!
JavaScript
83
star
62

learn-pre-commit

βœ… Pre-commit hooks let you run checks before allowing a commit (e.g. JSLint or check Test Coverage).
JavaScript
80
star
63

product-owner-guide

πŸš€ A rough guide for people working with dwyl as Product Owners
78
star
64

phoenix-ecto-append-only-log-example

πŸ“ A step-by-step example/tutorial showing how to build a Phoenix (Elixir) App where all data is immutable (append only). Precursor to Blockchain, IPFS or Solid!
Elixir
78
star
65

mvp

πŸ“² simplest version of the @dwyl app
Elixir
78
star
66

goodparts

πŸ™ˆ An ESLint Style that only allows JavaScript the Good Parts (and "Better Parts") in your code.
JavaScript
77
star
67

hapi-error

β˜” Intercept errors in your Hapi Web App/API and send a *useful* message to the client OR redirect to the desired endpoint.
JavaScript
76
star
68

flutter-todo-list-tutorial

βœ… A detailed example/tutorial building a cross-platform Todo List App using Flutter πŸ¦‹
Dart
75
star
69

process-handbook

πŸ“— Contains our processes, questions and journey to creating a team
HTML
75
star
70

dev-setup

✈️ A quick-start guide for new engineers on how to set up their Dev environment
73
star
71

aws-lambda-deploy

☁️ πŸš€ Effortlessly deploy Amazon Web Services Lambda function(s) with a single command. Less to configure. Latest AWS SDK and Node.js v20!
JavaScript
72
star
72

terminate

♻️ Terminate a Node.js Process (and all Child Processes) based on the Process ID
JavaScript
71
star
73

fields

🌻 fields is a collection of useful field definitions (Custom Ecto Types) that helps you easily define an Ecto Schema with validation, encryption and hashing functions so that you can ship your Elixir/Phoenix App much faster!
Elixir
69
star
74

learn-flutter

πŸ¦‹ Learn how to use Flutter to Build Cross-platform Native Mobile Apps
JavaScript
69
star
75

hapi-login-example-postgres

🐰 A simple registration + login form example using hapi-register, hapi-login & hapi-auth-jwt2 with a PostgreSQL DB
JavaScript
69
star
76

phoenix-liveview-todo-list-tutorial

βœ… Beginners tutorial building a Realtime Todo List in Phoenix 1.6.10 + LiveView 0.17.10 ⚑️ Feedback very welcome!
Elixir
64
star
77

learn-security

πŸ” For most technology projects Security is an "after thought", it does not have to be that way; let's be proactive!
64
star
78

learn-javascript

A Series of Simple Steps in JavaScript :-)
HTML
63
star
79

chat

πŸ’¬ Probably the fastest, most reliable/scalable chat system on the internet.
Elixir
62
star
80

learn-jsdoc

πŸ“˜ Use JSDoc and a few carefully crafted comments to document your JavaScript code!
CSS
60
star
81

ampl

πŸ“± ⚑ Ampl transforms Markdown into AMP-compliant html so it loads super-fast!
JavaScript
57
star
82

aguid

❄️ A Globally Unique IDentifier (GUID) generator in JS. (deterministic or random - you chose!)
JavaScript
56
star
83

tudo

βœ… Want to see where you could help on an open dwyl issue?
Elixir
56
star
84

learn-apple-watch-development

πŸ“— Learn how to build Native Apple Watch (+iPhone) apps from scratch!
Swift
55
star
85

learn-qunit

βœ… A quick introduction to JavaScript unit testing with QUnit
JavaScript
51
star
86

learn-ngrok

☁️ Learn how to use ngrok to share access to a Web App/Site running on your "localhost" with the world!
HTML
50
star
87

hapi-auth-jwt2-example

πŸ”’ A functional example Hapi.js app using hapi-auth-jwt2 & Redis (hosted on Heroku) with tests!
JavaScript
49
star
88

learn-jshint

πŸ’© Learn how to use the ~~jshint~~ code quality/consistency tool.
JavaScript
49
star
89

tachyons-bootstrap

πŸ‘’Bootstrap recreated using tachyons functional css
HTML
49
star
90

esta

πŸ” Simple + Fast ElasticSearch Node.js client. Beginner-friendly defaults & Heroku support βœ… πŸš€
JavaScript
48
star
91

learn-node-js-by-example

☁️ Practical node.js examples.
HTML
47
star
92

redis-connection

⚑ Single Redis Connection that can be used anywhere in your node.js app and closed once (e.g in tests)
JavaScript
45
star
93

product-roadmap

🌐 Because why wouldn't you make your company's product roadmap Public on GitHub?
45
star
94

aws-lambda-test-utils

Mock event and context objects without fluff.
JavaScript
44
star
95

learn-graphQL

❓Learn to use GraphQL - A query language that allows client applications to specify their data fetching requirements
JavaScript
44
star
96

elixir-pre-commit

βœ… Pre-commit hooks for Elixir projects
Elixir
43
star
97

hapi-login

πŸšͺ The Simplest Possible (Email + Password) Login for Hapi.js Apps βœ…
JavaScript
43
star
98

learn-riot

🐎 Riot.js lets you build apps that are simpler and load/run faster than any other JS framework/library.
HTML
43
star
99

github-reference

⭐ GitHub reference for *non-technical* people following a project's progress
42
star
100

learn-codeclimate

🌈 Learn how to use CodeClimate to track the quality of your JavaScript/Node.js code.
41
star