NodeJS p2p Databases - Hyperbee - workshop ๐ Workshop: What you will learn * Some background on peer to peer and decentralized web * How to get started using hyperspace cli * How to create a p2p database using the hyp
Deno Loading dotENV files with Deno Deno is a server runtime for javascript and typescript, it serves the same function as NodeJS, but different implementation. Deno strives to closely model the implementation of the browser version
Javascript Introduction to Async ADT If you do not know what an ADT is, read the previous post - https://blog.hyper.io/understanding-adts/In a previous post, we talked about ADTs or Algebraic Data
Javascript Understanding ADTs TL;DR; functional programming contains a lot of jargon that can sometimes get in the way of the purpose. In this post, we take a different approach to think about
Tutorial Sveltekit Authentication ๐Tutorial: What you will learn * How to create an OAuth Application using Github * How to redirect requests using SvelteKit * How to handle OAuth Callbacks * How to use the Access Token
Javascript hyper cache - counters hyper is an API on top of services (data, cache, search, etc) and one of the most powerful capabilities of hyper is the ability to compose services. Composing is the
Javascript Functional Recursion with ADTs First to Key! First to the EGG!Sometimes, I feel like functional thinking is a lot like the gunthers in Ready Player One! Every day you find a new clue
Javascript Testing secure endpoints with integration testing Testing APIs is a non-functional requirement for successful APIs, it is part of the definition of done. Securing APIs is also a non-functional requirement. Creating an integration test on a
Javascript Intro to Deno deploy Deno Deploy is a new platform as a service offering from the Deno company. Deno Deploy shares the same specifications as Cloudflare workers and has some impressive deployment speeds. Video
technical debt Why start hyper? (Unintended Technical Debt) After 20+ years of creating software and building technology teams using different technologies, frameworks, and skillsets, a common pattern emerged. This pattern was not just specific to our teams; it
API Architectures What is software architecture?A pattern or design that informs the developer where code should exist in a software development project. Basically, how you arrange your code for several purposes. Efficiency, organization, and less redundancy are some good reasons to create separate modules for
hyper architecture This post is just a high-level view of the current hyper architecture for anyone interested. The diagram shows the separation of concerns at a module level. Starting from the left,
Javascript Architect a different approach to web application development It is the year 2021 and serverless is starting to go mainstream, kubernetes has emerged as the top enterprise network solution and the React web library is the most sought
hyper63 hyper TSC Meeting May 4, 2021 In this meeting, we discuss the announcements that occurred on May 3rd, hyper got funding, and Tyler and Trip will be joining hyper the hyper team. ย Also, we talked about
Javascript Functional Thinking This weekend, I was reading a recently released book called Grokking Simplicity, the purpose of the book is to teach functional programming without using the technical jargon. (If you know
hyper update May 3, 2021 Greetings, ๐๐ป It has been a little while since our last official update. Today, I am excited to share with you some wonderful news that has happened in the last few months. Thank you for your interest and support in hyper, it is appreciated. April
SvelteKit Update In case you missed it, Svelte Summit was last weekend, all of the talks are currently available on youtube: Here is a link to the SvelteKit Update talk, Rich does
NodeJS CHSJS: NodeJS meetup April 22, 2021 Hello ๐, Here is a recording of the CharlestonJS Meetup April 22, 2021 Tom Wilson presents on the new NodeJS v16 release and does a talk showcasing a serverless framework called
hyper63 hyper TSC meeting April 20, 2021 Hello ๐ Below is a recording of the technical steering committee for hyper, main discussion topics: Current Status and RoadmapWebsite updatehyper client discussion
hyper TSC Meeting April 6 2021 Hello ๐ This post contains a link to the recording of the Technical Steering Committee meeting for hyper. An open source service framework. hyper is in current development. In this meeting we review the current status of hyper and the proposed roadmap in the next
NodeJS Intro to Integration Testing Testing is a large subject and there are many opinions on how to do it well. Time for me to add my opinion, I agree with many, on the importance
oauth Svelte + Google OAuth2 Authentication is a PAIN, ย there are so many decisions, functional and non functional requirements to work through. But suppose, just suppose, that you only had the following requirements: RequirementsInternal portal
opensource hyper63 TSC Meeting Recording 3/16 ๐ Hello Here the recording to the March 16, 2021 TSC meeting, in this meeting we discussed RFC 008, which adds the ability to perform background processes using hyper63! Check it
svelte Intro to Svelte Query Svelte is an exciting frontend framework that compiles away, which results in very small bundles shipped to the client with rich application functionality and features. In this post, I want