ugrás a tartalomhoz

Archívum - Szep 17, 2012 - Fórum téma

Silex és Imagine

felyx · 2012. Szep. 17. (H), 21.16
Ha valaki használja a Silex micro framework-öt és el tudná magyarázni hogy Imagine-t hogyan tudom feltenni hozzá azt megköszönném, mert nekem ez nem akar összejönni. Composert mai napig nem nagyon értem szóval manuálisan próbáltam meg a dolgot.

Egyébként a ServiceProvider itt van hozzá csak nem tudom hogyan tudnám használni úgy hogy működjön is:
https://github.com/GromNaN/SilexServiceProvider
 

Javascript IDE - automatikus kód kiegészítés örökléssel is

inf · 2012. Szep. 17. (H), 13.50
Üdv.

Szeretnék egy olyan js IDE-t használni fejlesztéshez, ami egyrészt támogatja a nodejs-t libeket is, másrészt meg lehet használni benne valami hasonló kódot, mint ez:
[colorer=javascript]
(function() {
var core = {
bind : function(method, scope) {
if (!( method instanceof Function))
throw new TypeError("Function needed as method.");
if ( typeof (scope) != "object")
throw new TypeError("Object needed as scope.");
return function() {
return method.apply(scope, arguments);
};
},
require : function(source) {
if ( typeof (source) != "object" || !source)
throw new TypeError("Object needed as source.");
for (var property in source)
if (source.hasOwnProperty(property) && !this.prototype.hasOwnProperty(property))
this.prototype[property] = source[property];
},
override : function(source) {
if ( typeof (source) != "object" || !source)
throw new TypeError("Object needed as source.");
for (var property in source)
if (source.hasOwnProperty(property))
this.prototype[property] = source[property];
},
extend : function(source) {
var superClass = this;
var newClass = source.hasOwnProperty("constructor") ?