惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
The Exploit Database - CXSecurity.com
A
Arctic Wolf
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
PCI Perspectives
PCI Perspectives
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Simon Willison's Weblog
Simon Willison's Weblog
P
Privacy & Cybersecurity Law Blog
O
OpenAI News
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
Cisco Blogs
AWS News Blog
AWS News Blog
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
美团技术团队
T
Threatpost
S
Schneier on Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
C
Cyber Attacks, Cyber Crime and Cyber Security
Last Week in AI
Last Week in AI
C
CERT Recently Published Vulnerability Notes
Blog — PlanetScale
Blog — PlanetScale
C
Cybersecurity and Infrastructure Security Agency CISA
F
Full Disclosure
博客园_首页
N
Netflix TechBlog - Medium
Security Latest
Security Latest
有赞技术团队
有赞技术团队
Google DeepMind News
Google DeepMind News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Register - Security
The Register - Security
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Recent Announcements
Recent Announcements
博客园 - Franky
P
Palo Alto Networks Blog
Project Zero
Project Zero
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
H
Help Net Security
Hacker News: Ask HN
Hacker News: Ask HN
Cisco Talos Blog
Cisco Talos Blog
H
Heimdal Security Blog
The Hacker News
The Hacker News
博客园 - 【当耐特】
GbyAI
GbyAI

倾城于你

EasyNote:极简自托管记事本 - 倾城于你 哪吒面板数据库瘦身-从1.2G到6M - 倾城于你 最具颜值的VPS剩余价值计算器来了 - 倾城于你 Typecho字体插件ZFonts已开源 - 倾城于你 MS订阅自助管理系统CF-M365-Admin - 倾城于你 推荐一款小而美的Windows剪贴板利器ElegantClipboard - 倾城于你 CDT-Monitor:阿里云 CDT 流量监控与自动化熔断工具 - 倾城于你 ZenShellHub单文件脚本管理中心 - 倾城于你 xg-nav一个简洁、纯HTML静态的个人导航站 - 倾城于你 一键部署Poste.io邮件服务器指南 - 倾城于你 Newsnow实时热点&新闻 - 倾城于你 推荐一个轻量级、高性能的多功能程序HubProxy - 倾城于你 本站的公益服务&API接口独立页面已开放 - 倾城于你
安利一款小说下载器so-novel - 倾城于你
博主: 青柠 · 2025-05-27 · via 倾城于你
  • 发布时间:
  • 6166 次浏览
  • 1 条评论
  • 420字数
  • 分类: 开源推荐
  •  百度已收录
  1. 首页
  2. 开源推荐
  3. 正文  

So Novel

这款软件能够将全网连载、完本的流行小说免费下载为 EPUB、TXT 等主流电子书格式,以便导入至自己喜爱的阅读器或设备,从而实现电脑、平板、手机的全设备离线阅读。

目前该程序已有LinuxWeb版本,可通过一键脚本或者docker-compose部署,界面清爽,使用方便。

软件截图

https://assets.qninq.cn/qning/1kacCQRH.webp

下载地址

发行版本

Web版本部署

🐧 Linux

bash <(curl -sSL https://raw.githubusercontent.com/freeok/so-novel/main/bin/linux-install.sh)

🐳 Docker

方式 1:脚本一键安装

curl -sSL https://raw.githubusercontent.com/freeok/so-novel/main/bin/docker-install.sh | bash

方式 2:Docker Compose

services:
  sonovel:
    image: ghcr.io/freeok/sonovel:latest
    container_name: sonovel
    ports:
      - "7765:7765"
    environment:
      JAVA_OPTS: "-Dmode=web"
    volumes:
      - sonovel_data:/sonovel
    restart: unless-stopped

volumes:
  sonovel_data:

方式 3:直接运行容器

# 如需挂载,请提前准备好 config.ini 文件、rules 目录
docker run -d \
  --name sonovel \
  -v /sonovel/config.ini:/sonovel/config.ini \
  -v /sonovel/rules:/sonovel/rules \
  -v /sonovel/downloads:/sonovel/downloads \
  -p 7765:7765 \
  -e JAVA_OPTS='-Dmode=web' \
  ghcr.io/freeok/sonovel:latest

方式 4:从源码构建镜像

# 确保已安装 git、maven

# 构建项目
git clone https://github.com/freeok/so-novel.git && cd so-novel
sh bin/release-linux.sh

# 构建 docker 镜像
cp target/app.jar . && cp -r target/SoNovel-Linux_x64/{config.ini,rules} .
docker build -t sonovel .

开源地址

🏷本文标签:Novel,️小说下载,️电子书

赞赏作者

如果觉得我的文章对你有用,请随意赞赏

安利一款小说下载器so-novel

 • 

*/