GitHub package.json versionTypeScriptNPM
GitHub package.json versionTypeScriptNPM
Latest

Request Token

interface RequestToken {
	_id: string;
}

What is a request token?

A request token is an object normally assigned to an incoming server request. All Svelte Eagle Eye instances created at the servicing of the request are identified by this token. It is a requirement in the server.
While a request token may be assigned to a running application in the browser, it is unnecessary.

Characteristics.

A request token is any arbitrary object of the RequestToken type whose _id property is unique in the applictation at any given time.
An instant request token is recognized both by its reference and by its _id property. An identical object is not recognized as the instant token.
Any attempt to obtain a Svelte Eagle Eye instance using a request token whose _id has been altered will result in error.