Nathan Chase

Results 97 comments of Nathan Chase

@Alexander-Taran Yes, I'm already on that thread, but rquast was going a different route (tying data statically to each route via the router config) whereas I need the data populated...

@fkleuver Using SSR, running Aurelia server-side, the requested page/route is rendered with metatags that are dynamically populated by whatever route is requested. Example: myapp.com/user/JohnDoe Aurelia should render the user view,...

@fkleuver Well, look at vue-meta's implementation: ``` ... export default { metaInfo: { title: 'My Example App', // set a title titleTemplate: '%s - Yay!', // title is now "My...

The "ssr-transformer": ``` import {DOM} from 'aurelia-pal'; export const TRANSFORMER_TYPES = { page: { type: 'meta', key: 'name', value: 'content', elements: [ 'description', 'keywords' ] }, opengraph: { type: 'meta',...

So, something like: ``` import fetch = require('isomorphic-fetch'); activate(params, routeConfig) { fetch('//myapp.com/api/contacts/' + params.id) .then(function(response) { return response.json(); }).then(function(metadata) { routeConfig.navModel.ssrProperties(data: metadata}; }); } ``` ? How exactly would we...

Maybe something similar to this? https://mihanizm56.github.io/fetch-api/docs/examples/caching

This was approximately the solution I came up with since I originally posted this issue: ```ts // Create a new LRU cache with a maximum size of // 100 items...

### Purpose and Priorities The revamped `` component should primarily address three key questions: - “How do I get rid of this screen?” - “Where are the docs?” - "How...

> > Where are the docs? > > Is this question insinuating the idea of accessing the docs within the project in development mode? More just that I think most...

Should just be a matter of updating https://github.com/arddluma/cloudflare-pages-slack-notification/blob/4d5b0d3ef6e3802289c13ecf7bb48538f2b1983e/action.yml#L41 to 'node20' ?