New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@recontentapp/file-formats

Package Overview
Dependencies
Maintainers
0
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recontentapp/file-formats

> Support IO operations for multiple file formats (used in CLI & API)

latest
Source
npmnpm
Version
0.8.1
Version published
Maintainers
0
Created
Source

Recontent.app file formats

Support IO operations for multiple file formats (used in CLI & API)

This package exposed a set of renderers & parsers for multiple file formats.

They are used to import & export data to/from Recontent.app represented as dicts.

import { renderAndroidXML } from '@recontentapp/file-formats'

/**
 * <?xml version="1.0" encoding="utf-8"?>
 * <resources>
 *   <string name="title">Hello World</string>
 *   <string name="dashboard.title">Welcome to your dashboard</string>
 *   <string name="dashboard.description">Here you can find all the information you need to get started</string>
 * </resources>
 */
renderAndroidXML({
  title: 'Hello World',
  'dashboard.title': 'Welcome to your dashboard',
  'dashboard.description':
    'Here you can find all the information you need to get started',
})

Keywords

file format

FAQs

Package last updated on 15 Sep 2024

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