NodeJS and SQLite
0 码力 | 8 页 | 109.88 KB | 1 年前3NodeJS 中文文档 V0.2.3
最新版文档:wiki.grati.org QQ 群:53090214 共同学习 NodeJS,欢迎加入。 1 NodeJS NodeJS NodeJS NodeJS 中文文档 V0.2.3 V0.2.3 V0.2.3 V0.2.3 感谢老狗、Tytsim、Zarknight、Zbm2001、LemonHall、利奥、元元、Seasontop、Frank、魔力鸟以及更多没有留 下姓名的同志们。 下姓名的同志们。 最新版文档:wiki.grati.org QQ 群:53090214 共同学习 NodeJS,欢迎加入。 2 NodeJS 中文文档 V0.2.3........................................................................................................................... .................................................... 62 最新版文档:wiki.grati.org QQ 群:53090214 共同学习 NodeJS,欢迎加入。 3 Synopsis Synopsis Synopsis Synopsis 总述 总述 总述 总述 使用 node 实现的 web 服务器示例,它返回'Hello World':0 码力 | 62 页 | 542.14 KB | 1 年前3AWS LAMBDA Tutorial
The details on how to get free login is discussed in tutorial. AWS Lambda supports languages like NodeJS, Java, Python, C# and Go. If you are novice to any of these technologies, we suggest you to go through ................................................................ 14 AWS Lambda BoilerPlate for NodeJS ................................................................................................ .......... 54 5. AWS LAMBDA — FUNCTION IN NODEJS .................................................................................. 59 Handler in NodeJS ...........................................0 码力 | 393 页 | 13.45 MB | 1 年前3OpenShift Container Platform 4.8 CLI 工具
--docker-image=repo/langimage # Create a NodeJS build config based on the provided [image]~[source code] combination oc new-build centos/nodejs-8-centos7~https://github.com/sclorg/nodejs-ex.git # Create a build and... DefaultDevfileRegistry nodejs Stack with Node.js 14 DefaultDevfileRegistry nodejs-angular Stack with DefaultDevfileRegistry nodejs-nextjs Stack with Next.js 11 DefaultDevfileRegistry nodejs-nuxtjs Stack with0 码力 | 152 页 | 1.24 MB | 1 年前3FISCO BCOS 1.3 中文文档
HelloWorldcontract address 0xa807685dd3cf6374ee56963d3d95065f6f056372 HelloWorld deploy success! 调用合约 编写合约调用程序 用nodejs实现,具体实现方法请直接看demoHelloWorld.js源码。 # 进入合约所在目录 cd /mydata/FISCO-BCOS/FISCO-BCOS/tools/contract vim 'dist/conf' } } } 总结 SDK应用开发步骤总结 根据以上描述,使用web3sdk开发区块链应用主要包括如下过程: 1. 根据应用功能设计合约数据结构和接口; 2. 编写智能合约,可先用Nodejs简单验证合约代码逻辑是否正确,验证 通过后,将合约代码转换成java代码 3. 编写java应用,调用合约java接口完成合约部署和调用功能 4. 配置并编译java应用 5. 应用功能测试 #节点0的目录 ├── node1 #节点1的目录 ├── nodejs #nodejs相关安装目录 ├── node_manager.sh #节点管理脚本 ├── node.sh #nodejs相关环境变量 ├── register.sh #注册节点入网脚本, 扩容使用 ├── start.sh0 码力 | 491 页 | 5.72 MB | 1 年前3OpenShift Container Platform 4.13 CI/CD
jenkinsfile,或者将其存储在 Source Control Management 系统中。 本例演示如何创建 OpenShift Container Platform Pipeline,以使用 nodejs-mongodb.json 模板构建、 部署和验证 Node.js/MongoDB 应用程序。 流程 流程 1. 创建 Jenkins master: 选择要使用的项目,或使用 oc new-project new-project创建一个新项目。 如果要使用持久性存储,请改用 jenkins-persistent。 2. 使用以下内容,创建名为 nodejs-sample-pipeline.yaml 的文件: 注意 注意 这将创建一个 BuildConfig 对象,它将使用 Jenkins Pipeline 策略来构建、部署和 扩展 Node.js/MongoDB 示例应用程序。 $ oc new-app jenkins-ephemeral 1 kind: "BuildConfig" apiVersion: "v1" metadata: name: "nodejs-sample-pipeline" spec: strategy: jenkinsPipelineStrategy: jenkinsfile: 0 码力 | 129 页 | 1.37 MB | 1 年前3RxJS Tutorial
............................................................................................ 3 NODEJS and NPM Installation ........................................................................... is supported by javascript and also with typescript. Few examples are Angular, ReactJS, Vuejs, nodejs etc. RxJS is an awesome library when it comes to the handling of async tasks.RxJS uses observables the following setup: NodeJS Npm RxJS package installation NODEJS and NPM Installation It is very easy to install RxJS using npm. You need to have nodejs and npm installed on your system0 码力 | 106 页 | 1.56 MB | 1 年前3BabelJS Tutorial
............................................................................................ 6 NodeJS ................................................................................................ work with BabelJS we need following setup: ● NodeJS ● Npm ● Babel-CLI ● Babel-Preset ● IDE for writing code NodeJS To check if nodejs is installed on your system, type node –v in the version of nodejs currently installed on your system. If it does not print anything, install nodejs on your system. To install nodejs, go to the homepage https://nodejs.org/en/download/ of nodejs and install0 码力 | 173 页 | 2.70 MB | 1 年前3Angular CLI Tutorial
version of Node.js installable archive file from Node.js Downloads, which is available at https://nodejs.org/download/. At the time of writing this tutorial, the versions available on different OS are /usr/local/nodejs directory. For example: $ cd /tmp $ wget http://nodejs.org/dist/v6.3.1/node-v6.3.1-linux-x64.tar.gz $ tar xvfz node-v6.3.1-linux-x64.tar.gz $ mkdir -p /usr/local/nodejs $ mv mv node-v6.3.1-linux-x64/* /usr/local/nodejs Add /usr/local/nodejs/bin to the PATH environment variable. OS Output Linux export PATH=$PATH:/usr/local/nodejs/bin 2. Angular CLI — Environment Setup0 码力 | 64 页 | 1.04 MB | 1 年前3OpenShift Container Platform 4.4 构建(build)
中指定与任务参数关联的所有可能环境变量。这样做可以减少磁盘 I/O 并提高 Jenkins 处理期间的性能。 5.4.4. Pipeline 构建教程 本例演示如何创建 OpenShift Pipeline,以使用 nodejs-mongodb.json 模板构建、部署和验证 Node.js/MongoDB 应用程序。 jenkinsPipelineStrategy: ... env: - name: "FOO" 选择要使用的项目,或使用 oc new-project创建一个新项目。 如果要使用持久性存储,请改用 jenkins-persistent。 2. 使用以下内容,创建名为 nodejs-sample-pipeline.yaml 的文件: 注意 注意 这将创建一个 BuildConfig,它将使用 Jenkins Pipeline 策略来构建、部署和扩展 Node.js/MongoDB BuildConfig 中包含内联内容,但首选的方法是使用源存 储库中的 jenkinsfile。 kind: "BuildConfig" apiVersion: "v1" metadata: name: "nodejs-sample-pipeline" spec: strategy: jenkinsPipelineStrategy: jenkinsfile: 0 码力 | 101 页 | 1.12 MB | 1 年前3共 579 条- 1
- 2
- 3
- 4
- 5
- 6
- 58