File tree 12 files changed +25
-25
lines changed
12 files changed +25
-25
lines changed Original file line number Diff line number Diff line change 1
1
This code is released under the GNU General Public License, which covers the main body
2
- of the create-plugin-communication code. The terms of this license can be found at:
2
+ of the arduino- create-agent-js-client code. The terms of this license can be found at:
3
3
https://www.gnu.org/licenses/gpl-3.0.en.html
4
4
5
5
You can be released from the requirements of the above licenses by purchasing
Original file line number Diff line number Diff line change 1
1
[ ![ License: GPL v3] ( https://img.shields.io/badge/License-GPL%20v3-blue.svg )] ( https://www.gnu.org/licenses/gpl-3.0 )
2
2
3
- # create-plugin-communication
3
+ # arduino- create-agent-js-client
4
4
JS module providing discovery of the Arduino Create Plugin and communication with it
5
5
6
6
## Installation
7
7
8
8
``` bash
9
- npm install create-plugin-communication --save
9
+ npm install arduino- create-agent-js-client --save
10
10
```
11
11
12
12
## How to use
13
13
14
14
``` js
15
- import Daemon from ' create-plugin-communication ' ;
15
+ import Daemon from ' arduino- create-agent-js-client ' ;
16
16
17
17
const daemon = new Daemon ();
18
18
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " create-plugin-communication " ,
2
+ "name" : " arduino- create-agent-js-client " ,
3
3
"version" : " 1.0.0" ,
4
4
"description" : " JS module providing discovery of the Arduino Create Plugin and communication with it" ,
5
5
"main" : " ./src/index.js" ,
67
67
},
68
68
"repository" : {
69
69
"type" : " git" ,
70
- "url" : " git+https://github.com/bcmi-labs/ create-plugin-communication .git"
70
+ "url" : " git+https://github.com/arduino/arduino- create-agent-js-client .git"
71
71
},
72
72
"keywords" : [
73
73
" arduino" ,
83
83
],
84
84
"license" : " GPLv2" ,
85
85
"bugs" : {
86
- "url" : " https://github.com/bcmi-labs/ create-plugin-communication /issues"
86
+ "url" : " https://github.com/arduino/arduino- create-agent-js-client /issues"
87
87
},
88
- "homepage" : " https://github.com/bcmi-labs/ create-plugin-communication #readme"
88
+ "homepage" : " https://github.com/arduino/arduino- create-agent-js-client #readme"
89
89
}
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
<!--
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright 2018 ARDUINO AG (http://www.arduino.cc/)
3
- * This file is part of create-plugin-communication .
3
+ * This file is part of arduino- create-agent-js-client .
4
4
* Copyright (c) 2018
5
5
* Authors: Alberto Iannaccone, Stefania Mellai, Gabriele Destefanis
6
6
*
7
7
* This software is released under:
8
8
* The GNU General Public License, which covers the main part of
9
- * create-plugin-communication
9
+ * arduino- create-agent-js-client
10
10
* The terms of this license can be found at:
11
11
* https://www.gnu.org/licenses/gpl-3.0.en.html
12
12
*
You can’t perform that action at this time.
0 commit comments