# meteor-node-phone **Repository Path**: mirrors_tanis2000/meteor-node-phone ## Basic Information - **Project Name**: meteor-node-phone - **Description**: Meteor package of node-phone. See https://github.com/AfterShip/node-phone - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README meteor-node-phone ================= Meteor package of node-phone. See https://github.com/AfterShip/node-phone Installation ============ ```shell mrt add phone ``` Usage example ============= On the server side: ```javascript Meteor.methods({ normalizePhone: function(phone) { var res = Phone(phone, ''); return res; } }); ``` On the client side: ```javascript var normalized = Meteor.call('normalizePhone', '+39 035 656098'); ```