0.3.15 • Published 10 years ago

not-php v0.3.15

Weekly downloads
73
License
-
Repository
github
Last release
10 years ago

this is your php on node (not-php)

Port PHP to Coffee-Script

Extracted from my Exspresso project

Installation

$ npm install not-php

You also need to have php installed. Php2coffee is written in php to leverage the Zend lexer.

Quick Start

This will create the output file 'CodeIgniter.php.coffee'

$ php2coffee CodeIgniter.php

Next Steps

Tweak the resulting code. Not-php helper functions are declared globaly, and so will act as a drop in replacement for many php api functions. You will have to update arguments for node style async calls, where appropriate.

Example:

$profile = @where('forgotten_password_code', $code).users().row()# pass the code to profile

Becomes:

@where('forgotten_password_code', $code).users ($err, $users) =>

  if $err then return $next $err
  $profile = $users.row()# pass the code to profile

Known Issues

preg_match

Node does not fully support arguments by reference.

Example:

if preg_match($pattern, $subject, $matches) ...

Correction:

$matches = preg_match($pattern, $subject)
if $matches? ...

arrays

Some nested literal object constructs are mis-tranlsated, and will need to be manually corrected.

Example:

@data['identity'] = 'name':'identity',
  'id':'identity',
  'type':'text',
  'value':@form_validation.set_value('identity',
)

Correction:

@data['identity'] =
  'name':'identity',
  'id':'identity',
  'type':'text',
  'value':@form_validation.set_value('identity')

.eco templates

Eco syntax require a this (@) operator for helpers and variables

Example:

  <td><%- anchor("auth/edit_user/" + $user.id, 'Edit') %></td>

Correction:

  <td><%- @anchor("auth/edit_user/" + @user.id, 'Edit') %></td>

Note that the open coffee tag defaults to <%-, which matches the php default behaviour. Change to <%= as appropriate to escape output.

To Do

  • Complete the test suite
  • Complete Eco templates - address the this (@) operator issue.
    • prepend all external variables
    • prepend all external functions not in the compatability layer.

Options

Usage: php2coffee [OPTIONS] PATH [DESTINATION]

-h, --help          display this help
-j, --javascript    compiles resulting .coffee file
-m, --markup        compiles into .eco markup template
-r, --recursive     recurse source path
-t, --trace         trace output
-T, --tabs          use tab character in output (default is spaces)
-d, --dump          dump of tokens

License

(The MIT License)

Copyright (c) 2012 Bruce Davidson <darkoverlordofdata@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.3.15

10 years ago

0.3.14

11 years ago

0.3.13

11 years ago

0.3.12

11 years ago

0.3.11

11 years ago

0.3.10

11 years ago

0.3.9

11 years ago

0.3.8

11 years ago

0.3.7

11 years ago

0.3.6

11 years ago

0.3.5

11 years ago

0.3.4

11 years ago

0.3.3

11 years ago

0.3.2

11 years ago

0.3.1

11 years ago

0.3.0

11 years ago