Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
modelstudioai
/
cli
Public
Notifications
You must be signed in to change notification settings
Fork
22
Star
305
Code
Issues
4
Pull requests
3
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
cli
/
tools
/
browser-probe-localhost-console.js
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
43 lines (39 loc) · 1.72 KB
main
Breadcrumbs
cli
/
tools
/
browser-probe-localhost-console.js
Copy path
Top
File metadata and controls
Code
Blame
43 lines (39 loc) · 1.72 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* 在目标页面(例如 https://bailian.console.aliyun.com/...)打开 DevTools → Console,
* 将本文件全文粘贴回车执行;按提示输入 bl 监听的本机端口(127.0.0.1:PORT)。
*
* 用于观察:当前 HTTPS 页面能否对 http://127.0.0.1:PORT 发起请求(混合内容 / CORS 等)。
*
* 注意:控制台里若报 Failed to fetch / NetworkError,常见是混合内容被拦截,与 CLI 服务是否正常无关。
*/
void
(
async
(
)
=>
{
const
portStr
=
window
.
prompt
(
"请输入本机监听端口(数字,例如 54321)"
)
;
if
(
portStr
===
null
)
{
console
.
log
(
"[probe] 已取消"
)
;
return
;
}
const
port
=
parseInt
(
portStr
.
trim
(
)
,
10
)
;
if
(
!
Number
.
isFinite
(
port
)
||
port
<=
0
||
port
>
65535
)
{
console
.
error
(
"[probe] 无效端口:"
,
portStr
)
;
return
;
}
const
base
=
`http://127.0.0.1:
${
port
}
`
;
const
url
=
`
${
base
}
/`
;
console
.
log
(
"[probe] 当前页面:"
,
location
.
href
)
;
console
.
log
(
"[probe] 目标 URL:"
,
url
)
;
// 1) 普通 GET(会走 CORS;若混合内容被拦,通常在这里失败)
try
{
const
res
=
await
fetch
(
url
,
{
method
:
"GET"
,
cache
:
"no-store"
}
)
;
const
text
=
await
res
.
text
(
)
;
console
.
log
(
"[probe] GET 成功 status="
,
res
.
status
,
"body前200字="
,
text
.
slice
(
0
,
200
)
)
;
}
catch
(
e
)
{
console
.
error
(
"[probe] GET 失败:"
,
e
?.
name
,
e
?.
message
,
e
)
;
}
// 2) no-cors:不读响应体;若仍失败,多为混合内容等
try
{
const
res
=
await
fetch
(
url
,
{
method
:
"GET"
,
mode
:
"no-cors"
,
cache
:
"no-store"
}
)
;
console
.
log
(
"[probe] no-cors GET 完成 opaque type="
,
res
.
type
,
"status(常为0)="
,
res
.
status
)
;
}
catch
(
e
)
{
console
.
error
(
"[probe] no-cors GET 失败:"
,
e
?.
name
,
e
?.
message
,
e
)
;
}
}
)
(
)
;
You can’t perform that action at this time.