좋은 프로그램은 마음의 여유에서 나온다.
최신 버전에는 아직 한글화가 안된 것이 있네요. http://martian36.tistory.com/1102
워드프레스의 쇼핑몰 기능을 더해주는 다양한 플러그인들 중 가장 인기가 좋다고 하는 플러그인 관리자 페이지의 플러그인 설치에서 woocommerce로 검색하여 설치 또는 홈페이지에서 다운로드하여 설치wp-content/plugins/ 에 압축해제 http://www.woothemes.com/woocommerce/
설치 npm install node-oauth2-server --save // 모듈 불러오기 var oauthserver = require('node-oauth2-server'); // express 미들웨어로 설정 //bodyParser필수 app.configure(function() { var oauth = oauthserver({ model: require('./oauth/model'), // oauth 2.0의 각종 인증 함수를 구현해 놓은 곳 grants: ['password'] allow: ['/', '/login'], // 인증 없이 접근할 api debug: true }); app.use(express.favicon()); app.use(express.logger('dev')); app.u..
i18n 모듈 설치 npm install i18n var i18n = require('i18n'); i18n.configure({ locales: ['ko', 'en'], defaultLocale: 'ko', cookie: 'locale', directory: __dirname + '/locales' }); var app = express(); app.locals({ 'l': i18n.__, 'ln': i18n.__n }); // init시 초기화됨 //app.use(i18n.init); /locales 폴더에 파일 생성 ko.jsen.js 데이터 설정 {'hello' : 'hello, world'} ejs에서 호출하기