You are here |
blog.stevenlevithan.com | ||
| | | |
itsmycode.com
|
|
| | | | PrismJs is a library written using JavaScript, which is used for syntax highlighting. Prism is very lightweight (2KB), intuitive, blazing-fast and extensible compared to other libraries. | |
| | | |
babeljs.io
|
|
| | | | For those of us that need to support older browsers, we run a compiler like Babel over application code. But that's not all of the code that we ship to browsers; there's also the code in our node_modules. | |
| | | |
rachelappel.com
|
|
| | | | JavaScript is everywhere. It's run in web sites, as utilities on many operating systems, and in any host, like IE, Firefox, or Chrome and it's a first class citizen in Windows 8 Metro style app development. Since JavaScript has been around for a long time, it still has a lot of baggage from when it... | |
| | | |
khromov.se
|
|
| | In this blog post we'll go over a lesser documented but powerful part of SvelteKit - event.locals. Locals are a way to register trusted, server-side, per-request state. The most common use case for locals is to associate some type of data with the current request. Example use cases for locals are: Since locals are per-request, they don't leak between requests, and disappear immediately when the request has been delivered to the user. Locals are common in other frameworks - you might already be familiar w... |