欢迎访问我的独立博客
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 67 下一页
摘要: https://blog.usejournal.com/top-6-web-frameworks-for-go-as-of-2017-23270e059c4b https://www.zhihu.com/question/27370112 之前学golang的时候,看到国人写的beego框架,我就通 阅读全文
posted @ 2018-02-07 11:47 github.com/starRTC 阅读(472) 评论(0) 推荐(0) 编辑
摘要: get download and install packages and dependencies install = compile and install packages and dependencies run compile and run Go program build compil 阅读全文
posted @ 2018-02-05 19:37 github.com/starRTC 阅读(162) 评论(0) 推荐(0) 编辑
摘要: The library offers support for the Real-time Transport Protocol (RTP), The library uses the JThread library to automatically poll 轮询 for incoming data 阅读全文
posted @ 2018-02-05 11:08 github.com/starRTC 阅读(200) 评论(0) 推荐(0) 编辑
摘要: https://github.com/koajs/koa https://github.com/demopark/koa-docs-Zh-CN ctx.response.type = 'json'; app.use()用来加载中间件 app.use(ctx => { ctx.body = 'Hell 阅读全文
posted @ 2018-02-02 14:07 github.com/starRTC 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 作用是让临时文件和中间文件都不提交到代码库中 工程相关的.gitignore 放在根目录 常用 的有: Android.gitignore C++.gitignore C.gitignore CMake.gitignore CodeIgniter.gitignore Laravel.gitignor 阅读全文
posted @ 2018-02-02 10:23 github.com/starRTC 阅读(1074) 评论(0) 推荐(0) 编辑
摘要: JavaScript的函数不但是“头等公民”,而且可以像变量一样使用,具有非常强大的抽象能力。 定义函数的方式如下: function abs(x) { if (x >= 0) { return x; } else { return -x; } } 如果没有return语句,函数执行完毕后也会返回结 阅读全文
posted @ 2018-02-02 09:40 github.com/starRTC 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 为什么起名叫JavaScript?原因是当时Java语言非常红火,所以网景公司希望借Java的名气来推广,但事实上JavaScript除了语法上有点像Java,其他部分基本上没啥关系。 为了让JavaScript成为全球标准,几个公司联合ECMA(European Computer Manufact 阅读全文
posted @ 2018-02-01 10:52 github.com/starRTC 阅读(154) 评论(0) 推荐(0) 编辑
摘要: index.html <html> <meta http-equiv="refresh" content="0;url=https://www.starRTC.com/"> </html> server { listen 80; server_name www.starRTC.com; locati 阅读全文
posted @ 2018-02-01 09:51 github.com/starRTC 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 标准库中默认的HTTP模块 const https = require('https'); https.get('https://api.nasa.gov/planetary/apod?api_key=DEMO_KEY', (resp) => { let data = ''; // A chunk 阅读全文
posted @ 2018-01-31 09:20 github.com/starRTC 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 用Node.js开发Web服务器端,有几个显著的优势: 速度快,非常快!这得益于Node.js天生是异步的。 常见的Web框架包括:Express,Sails.js,koa,Meteor,DerbyJS,Total.js,restify…… 构建工具有:Grunt,Gulp,Webpack…… 好消 阅读全文
posted @ 2018-01-30 19:19 github.com/starRTC 阅读(497) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 67 下一页