Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dumpling

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dumpling

Convert serialized PHP session array into object.

  • 0.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

Dumpling

Sometimes you have to deal with things like serialized PHP sessions in Javascript apps, because I guess PHP still is a thing in parts of the world.

Dumpling unserializes the PHP session string into a Javascript object. There is currently not any support for recursion.

###Usage #####Server-side

var dumpling = require('dumpling')
var serial = 'some awful serialized php session'
var output = dumpling(serial)

#####Client-side The server-side syntax above is also supported in Ender for client-side usage.

If you are using the global $ object in Ender, you can also do the following:

var output = $.dumpling(string)

There's also support for jQuery via a jQuery plugin. This is in the build directory. Use either dumpling-jquery.js or the minified dumpling-jquery.min.js

Usage is:

<script src="jquery.js"></script>
<script src="dumpling-jquery.js"></script>
<script type="text/javascript">
var output = $.dumpling(php_serialized_session)
</script>

###Testing npm test

###License MIT/X11

Note: this module is titled dumpling because I was eating Chinese food when I wrote it.

Keywords

FAQs

Package last updated on 11 Nov 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc