FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Battle scarred developer's guide to Umbraco v17 - Entry Points
How-ToTools

Battle scarred developer's guide to Umbraco v17 - Entry Points

via Dev.toKevin Jump1mo ago

So now that bundles have replaced entry points as the place to integrate your Umbraco extension, do we still need entry points? Yes, i most cases you will still need an entry point, to initialize things like the authentication for your client to talk to the server. or if you are feeling really mischievous to unload other entries from the umbraco registry ! Register your entry point via a manifest. all the extension template will do this one for you, but to show the process export const manifests : Array < UmbExtensionManifest > = [ { name : " Do Stuff Client Entrypoint " , alias : " DoStuff.Client.Entrypoint " , type : " backofficeEntryPoint " , js : () => import ( " ./entrypoint.js " ), }, ]; this is then imported and registered via your bundle.manifest.ts file. Auth. The examples that you get with the templates contain most of the code you will need here for authentication. _host . consumeContext ( UMB_AUTH_CONTEXT , async ( authContext ) => { // Get the token info from Umbraco const

Continue reading on Dev.to

Opens in a new tab

Read Full Article
15 views

Related Articles

Building an MCP Server for Your Own Tools
How-To

Building an MCP Server for Your Own Tools

Medium Programming • 5d ago

[MM’s] Boot Notes — The Day Zero Blueprint — Test Smarter on Day One
How-To

[MM’s] Boot Notes — The Day Zero Blueprint — Test Smarter on Day One

Medium Programming • 5d ago

RHAPSODY OF REALITIES - 26TH MARCH 2026
"In Nehemiah’s day, as the people built the wall of…
How-To

RHAPSODY OF REALITIES - 26TH MARCH 2026 "In Nehemiah’s day, as the people built the wall of…

Medium Programming • 5d ago

How to Actually Make Money with a "Free" App
How-To

How to Actually Make Money with a "Free" App

Medium Programming • 5d ago

How-To

Building a Runtime with QuickJS

Lobsters • 5d ago

Discover More Articles