Gathering detailed insights and metrics for @tnnevol/koa2-history-api-fallback-async
Gathering detailed insights and metrics for @tnnevol/koa2-history-api-fallback-async
Fallback to index.html for applications that are using the HTML 5 history API
npm install @tnnevol/koa2-history-api-fallback-async
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
436
Last Day
1
Last Week
3
Last Month
8
Last Year
66
1 Stars
94 Commits
1 Forks
1 Watching
1 Branches
1 Contributors
Latest Version
2.0.2
Package Id
@tnnevol/koa2-history-api-fallback-async@2.0.2
Unpacked Size
12.40 kB
Size
5.10 kB
File Count
5
NPM Version
6.9.0
Node Version
10.16.0
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
200%
3
Compared to previous week
Last month
33.3%
8
Compared to previous month
Last year
-62.5%
66
Compared to previous year
Middleware to proxy requests through a specified index page, useful for Single Page Applications that utilise the HTML5 History API.
本项目是由 connect-history-api-fallback 修改完成,在 npm 库中找了前面几个关于 koa2 的 history 中间件,都未返回中间件的指定格式,故做了这个包,其中修改了 url 废弃的 api,改用 koa 请求体中的 url 解析对象。感谢原作者。
Single Page Applications (SPA) typically only utilise one index file that is
accessible by web browsers: usually index.html
. Navigation in the application
is then commonly handled using JavaScript with the help of the
HTML5 History API.
This results in issues when the user hits the refresh button or is directly
accessing a page other than the landing page, e.g. /help
or /help/online
as the web server bypasses the index file to locate the file at this location.
As your application is a SPA, the web server will fail trying to retrieve the file and return a 404 - Not Found
message to the user.
This tiny middleware addresses some of the issues. Specifically, it will change
the requested location to the index you specify (default being /index.html
)
whenever there is a request which fulfills the following criteria:
text/html
,.
(DOT) character andThe middleware is available through NPM and can easily be added.
npm install @tnnevol/koa2-history-api-fallback-async@2.0.0 -S
Import the library
1var history = require("@tnnevol/koa2-history-api-fallback-async");
Now you only need to add the middleware to your application like so
1var Koa = require("koa"); 2 3var app = new Koa().use(history()).listen(3000);
You can optionally pass options to the library when obtaining the middleware
1var middleware = history({});
Override the index (default /index.html
). This is the request path that will be used when the middleware identifies that the request path needs to be rewritten.
This is not the path to a file on disk. Instead it is the HTTP request path. Downstream connect/express middleware is responsible to turn this rewritten HTTP request path into actual responses, e.g. by reading a file from disk.
1history({ 2 index: "/default.html", 3});
Override the index when the request url matches a regex pattern. You can either rewrite to a static string or use a function to transform the incoming request.
The following will rewrite a request that matches the /\/soccer/
pattern to /soccer.html
.
1history({ 2 rewrites: [{ from: /\/soccer/, to: "/soccer.html" }], 3});
Alternatively functions can be used to have more control over the rewrite process. For instance, the following listing shows how requests to /libs/jquery/jquery.1.12.0.min.js
and the like can be routed to ./bower_components/libs/jquery/jquery.1.12.0.min.js
. You can also make use of this if you have an API version in the URL path.
1history({ 2 rewrites: [ 3 { 4 from: /^\/libs\/.*$/, 5 to: function (context) { 6 return "/bower_components" + context.parsedUrl.pathname; 7 }, 8 }, 9 ], 10});
The function will always be called with a context object that has the following properties:
url.parse
.String.match(...)
.This middleware does not log any information by default. If you wish to activate logging, then you can do so via the verbose
option or by specifying a logger function.
1history({ 2 verbose: true, 3});
Alternatively use your own logger
1history({ 2 logger: console.log.bind(console), 3});
Override the default Accepts:
headers that are queried when matching HTML content requests (Default: ['text/html', '*/*']
).
1history({ 2 htmlAcceptHeaders: ["text/html", "application/xhtml+xml"], 3});
Disables the dot rule mentioned above:
[…] is not a direct file request, i.e. the requested path does not contain a
.
(DOT) character […]
1history({ 2 disableDotRule: true, 3});
No vulnerabilities found.
No security vulnerabilities found.