Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/plf32upqf/CyberLantingAssignments/src/commit/0f73dde6deedfa59e564c0345ed687c485bfc2f2/Assignment2/frontend/todo-list/node_modules/shebang-command You should set ROOT_URL correctly, otherwise the web may not work correctly.
Vks 0f73dde6de 项目任务书 4 months ago
..
index.js 项目任务书 4 months ago
license 项目任务书 4 months ago
package.json 项目任务书 4 months ago
readme.md 项目任务书 4 months ago

readme.md

shebang-command Build Status

Get the command from a shebang

Install

$ npm install shebang-command

Usage

const shebangCommand = require('shebang-command');

shebangCommand('#!/usr/bin/env node');
//=> 'node'

shebangCommand('#!/bin/bash');
//=> 'bash'

API

shebangCommand(string)

string

Type: string

String containing a shebang.