链接到文档 GraphQL是API的查询语言,它是服务器端运行时,用于通过使用为数据定义的类型系统执行查询。 GraphQL不受任何特定数据库或存储引擎的束缚,而是由您现有的代码和数据支持。 入门 使用node.js服务器? 只需使用express-graphql! 如果您使用其他GraphQL服务,它可以自动显示GraphiQL。 GraphiQL相对容易设置。 使用npm: 安装软件包: 本示例使用GraphQL,Mongoose和JWT。 您可以通过两种方式安装软件包: npm install 如果有错误,请逐个安装软件包,不是很多吧? :grinning_squinting_face: $ npm install --save express-graphql $ npm install jsonwebtoken $ npm install mongoose -save 实现的功能: GraphQL: :heavy_check_mark: 突变。 :heavy_check_mark: 查询。 :heavy_check_mark: 用连接数据库(Mongod
2021-02-03 14:05:53 32KB javascript api graphql jwt
1
storybook-addon-angularjs-example:一个带有storybook-addon-angularjs的有效示例。 移至:https://github.comtitonobrestorybook-addon-angularjs
2021-02-03 14:05:10 570B javascript angularjs example storybook
1
MSChart Example.zip
2021-02-03 13:02:42 30.59MB C++ MSChart
1
:grinning_face_with_big_eyes: Node.js-Express-MongoDB-RESTful 在Node.js + Express + MongoDB上的简单RESTful API实现。 职务: :check_mark: 快递4.16 :check_mark: 猫鼬5.3 :check_mark: 护照0.4 :check_mark: 通天塔7.1 :check_mark: 摩卡5.2 :check_mark: 柴4.2 :check_mark: 纽约13.1 :check_mark: 赫斯基1.1.3 :check_mark: 埃斯林特5.8 :check_mark: 更漂亮1.14 :backhand_index_pointing_right_light_skin_tone:先决条件 MongoDB 不要忘记将MongoDB的bin文件夹的位置添加到PATH env变量中。 mongod --version 节点 node --version 纱 npm install -g yarn :backhand_index_poin
2021-02-03 09:37:48 59KB nodejs express mongodb mongoose
1
使用CycleGAN进行图像域转换:用于图像域转换的深度学习的MATLAB示例
2021-02-03 09:37:47 44.81MB deep-neural-networks example matlab deeplearning
1
基于官网example进行重新封装。
2021-02-01 19:34:17 131KB elastic-job lite
1
@ babel / preset-env示例 与通天塔7 主要文档: : @ babel / polyfill文档: : 浏览器列表: : # .browserslistrc > 1% in FR // babel.config.js module . exports = { presets : [ [ '@babel/preset-env' , { useBuiltIns : 'entry' , debug : true } ] ] } ; // First line inside your app (App.js for this example) // Not needed with useBuiltIns: 'usage' //import '@babel/polyfill' 发现 指定文件.browserslistrc而不是babel.config.js browsers: [...] :将由Autoprefixer和其他工具重用 useBuiltIns: 'usage
2021-02-01 19:05:58 8KB polyfill babel browserslist babel-preset-env
1
TypeScript + Babel 7 基于Babel 7新功能构建的示例TypeScript项目。 包括React 16,Jest和Enzyme(用于测试)。 由于不再需要使用TypeScript编译器来编译源代码,因此您可以保留现有的Babel管道,而是依靠基于编辑器的类型检查或tsc 。 安装 git clone https://github.com/damassi/babel-7-typescript-example && cd babel-7-typescript-example yarn install yarn start yarn test:watch yarn typecheck 有关使用Webpack的更完整的示例,请参见此-感谢@flobacher。 如果使用VSCode,请确保安装推荐的扩展。 例 // App.tsx import React , { Component } from ' react ' interface Props { name : string } export const App extends Component < Pr
1
玛拉示例项目 一个可运行的应用程序,演示了如何使用mara构建数据仓库。 将库和库与框架结合到一个项目中。 示例ETL将PyPi下载统计信息和GitHub回购活动度量标准集成到了更通用的Python项目活动统计信息中。 该存储库旨在用作新项目的模板。 示例:Python项目统计 该项目使用两个数据源: 在 (需要Google登录)上BigQuery数据集。 它包含每个单独的软件包下载以及项目和客户端属性。 BigQuery资料集位于 。 它几乎包含所有发生在Github存储库中的事件。 从两个数据源中,使用的查询以增量方式下载一组预先聚合和过滤的CSV: $ gunzip --decompress --stdout data/2018/04/10/pypi/downloads-v1.csv.gz | grep " \tflask\t\|day_id " | head -n 11 day_id project project_version python_version installer number_of_downloads 20180410 flask 0.1 ban
2021-01-30 23:04:36 17.65MB bigquery sql etl pypi
1
Express,GraphQL示例 如何运行项目 安装依赖项: yarn # or using npm npm install 创建src/config.ts或重命名src/config.example.js并使用您的凭据更新文件: export default { port : 3010 , database : { type : 'mysql' , connection : { database : '' , host : '' , password : '' , user : '' , } , /* * Migrations run on every start of the application. * If you initialized the database manually (from the database.sql file), * you don't need this. */ migrations : { d
2021-01-30 23:04:28 125KB nodejs graphql express typescript
1