All Projects → slimkit → Plus Small Screen Client

slimkit / Plus Small Screen Client

Licence: other
本库已经合并进入 https://github.com/slimkit/plus 中,仅提供 2.1 及以前版本下载使用!

Projects that are alternatives of or similar to Plus Small Screen Client

Bittorrent Tracker
🌊 Simple, robust, BitTorrent tracker (client & server) implementation
Stars: ✭ 1,184 (+1326.51%)
Mutual labels:  client
Laravel Vue Starter
Well Documented Laravel Starter App From Development to Production. For Full Blown RESTFUL API and SPA with Beautiful UI Using Buefy / ElementUi For Reusable Vue Components
Stars: ✭ 76 (-8.43%)
Mutual labels:  spa
Aspnetcorespa
Asp.Net 5.0 & Angular 11 SPA Fullstack application with plenty of examples. Live demo:
Stars: ✭ 1,211 (+1359.04%)
Mutual labels:  spa
Echofon Firefox Unofficial
Echofon Unofficial - maintained version of Echofon: full featured, super clean Twitter app for Firefox.
Stars: ✭ 73 (-12.05%)
Mutual labels:  client
C Sharp R.a.t Client
This is a c# client for the c# R.A.T server
Stars: ✭ 75 (-9.64%)
Mutual labels:  client
Vue Horizontal
An ultra simple pure vue horizontal layout for modern responsive web with zero dependencies. (SPA/SSG/SSR)
Stars: ✭ 75 (-9.64%)
Mutual labels:  spa
Vos backend
vangav open source - backend; a backend generator (generates more than 90% of the code needed for big scale backend services)
Stars: ✭ 71 (-14.46%)
Mutual labels:  client
Request Compose
Composable HTTP Client
Stars: ✭ 80 (-3.61%)
Mutual labels:  client
Faunadb Python
Python driver for FaunaDB
Stars: ✭ 75 (-9.64%)
Mutual labels:  client
Uploadcare Php
PHP API client that handles uploads and further operations with files by wrapping Uploadcare Upload and REST APIs.
Stars: ✭ 77 (-7.23%)
Mutual labels:  client
Couclient
Children of Ur Client
Stars: ✭ 73 (-12.05%)
Mutual labels:  client
Meilisearch Python
Python wrapper for the MeiliSearch API
Stars: ✭ 75 (-9.64%)
Mutual labels:  client
Gowebsocket
Gorilla websockets based simplified websocket-client implementation in GO.
Stars: ✭ 77 (-7.23%)
Mutual labels:  client
Laravel Vuetify Spa
Laravel-Vue SPA starter project template with Vuetify frontend.
Stars: ✭ 73 (-12.05%)
Mutual labels:  spa
Graphql client
GraphQL Client.
Stars: ✭ 78 (-6.02%)
Mutual labels:  client
Webdav Fs
Node fs wrapper for WebDAV
Stars: ✭ 72 (-13.25%)
Mutual labels:  client
Revolt
Better desktop integration for Riot.im (not only) for GNOME
Stars: ✭ 76 (-8.43%)
Mutual labels:  client
Zhihu Oauth
尝试解析出知乎官方未开放的 OAuth2 接口,并提供优雅的使用方式,作为 zhihu-py3 项目的替代者,目前还在实验阶段
Stars: ✭ 1,237 (+1390.36%)
Mutual labels:  client
Go Imap
📥 An IMAP library for clients and servers
Stars: ✭ 1,217 (+1366.27%)
Mutual labels:  client
Nuxt Chat App
Frontend of real-time chat application built using nuxtjs, socket.io. Check the backend at https://github.com/binbytes/chat-app-server.
Stars: ✭ 77 (-7.23%)
Mutual labels:  spa

Plus (ThinkSNS+) Logo

The Small Screen Client for Plus(ThinkSNS+)

使用现代 Web 技术 Vue.js 编写的 Plus(ThinkSNS+) 浏览器单页客户端。

GitHub release Build Status QQ Group

简介

这个浏览器单页客户端是项目使用 Apache-2.0 协议开源,基于 Vue.js 及 ES+ 等现代 Web 技术进行构建! 项目具有以下几个特点:

  1. 易于分发,你可以将编译后文件分发到任何地方,不需要动态语言的支持。
  2. 完全独立,你无需懂的后端程序,只需要调用文件化的 APIs 接口即可开发。
  3. 高 App 还原,项目以 ThinkSNS+ 原生客户端为 UI 基准,进行高度还原。
  4. 技术简单,我们使用中国接受度非常高的 Vue.js 进行开发,你可以快速入手。

安装

Plus (ThinkSNS+) SPA 安装指南

配置

.env 文件配置说明:

BASE_URL=/                                             # 我们假设你部署在一个域名下,所以默认 `/`, 例如你部署在子目录下,请设置子目录,必须以 `/` 结尾!
GENERATE_CSS_MAP=true                                  # 是否构建的时候生成 source map

VUE_APP_ENABLE_SERVICE_WORKER=false                    # 是否添加离线支持
VUE_APP_API_HOST=http://127.0.0.1                      # 你的 Plus 程序地址
VUE_APP_API_VERSION=v2                                 # 无需修改,目前支持的值只有 `v2`
VUE_APP_NAME="Plus (ThinkSNS+)"                        # 浏览器显示的程序名称
VUE_APP_KEYWORDS=                                      # 易于搜索引擎搜索的关键词
VUE_APP_DESCRIPTION=                                   # 你的网站描述
VUE_APP_ROUTER_MODE=hash                               # 路由模式,请参考下面的「路由模式」文档
VUE_APP_THEME=src/console/theme.js                     # 主题文件,暂时不支持修改
VUE_APP_EASEMOB_APP_KEY=#                              # 环信 APP KEY
VUE_APP_EASEMOB_API_URL=http://a1.easemob.com          # 环信接口地址
VUE_APP_EASEMOB_ISDEBUG=false                          # 是否开启环信 Debug
VUE_APP_LBS_GAODE_KEY=                                 # 高德地图 GAODE KEY

路由模式

路由模式支持 hashhistory 两种模式,区别如下:

  • hash 模式:无需后端支持,利用浏览器的「锚」功能进行路由定位。
  • history 模式:需要后端的路由转发支持,正确设置的情况是所有请求都转发到 index.html 文件上

更加详细的描述请看 👉 API 参考#mode

跨域问题

你如果部署这个客户端到全新的地址中,那么你肯定会遇到跨域资源共享禁止问题,导致这个客户端无法正常工作。 在你安装完成 Plus(ThinkSNS+) 后,你可以进入 /admin 后台管理面板,然后你从左侧菜单点击「系统设置」 然后再从顶栏菜单选择 「安全」。

此时,你会看到一个 「跨域设置」设置,这个时候你应该咨询后端了解跨域资源共享的人,默认情况是允许所有跨域的,如果关闭了允许所有,请在 Access-Control-Allow-Origin 将程序的 host 添加进去即可!

开发部署

在项目中设置了三个有效命令:

  • serve 用于开发,修改代码后会自动 Hot Reload
  • build 用于正式部署的打包,执行完成后会多出一个 dist/ 目录
  • lint 用于代码检查和风格修复

License

Plus 代码采用企业定制许可证发布,请参阅完整的许可证文本

Copyright © 2018 Chengdu ZhiYiChuangXiang Technology Co., Ltd. All rights reserved.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].