Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
ngx-json-table
Advanced tools
ngx-json-table component made to represent JSON object as a simple HTML table.
The library is available as npm package, so all you need to do is to run the following command:
npm install --save ngx-json-table
This command will create a record in your package.json
file and install the package into the npm modules folder.
First thing you need to do is to import the ngx-json-table directives into your component.
import { Ng2JsonTableModule } from 'ngx-json-table';
Then register it by adding to the list of directives of your module:
// ...
@NgModule({
imports: [
// ...
Ng2JsonTableModule,
// ...
],
declarations: [ ... ]
})
// ...
Now, we need to configure the table and add it into the template. There is no required setting for the component to start working (Settings documentation): So let's put the ngx-json-table component inside of the template:
// ...
@Component({
template: `
<ngx-json-table></ngx-json-table>
`
})
// ...
Still it seems like something is missing... Right, there is no data in the table by default. To add some, let's create any valid JSON object.
data: any = {
product: 'NGX JSON Table',
version: 1.0,
releaseDate: '2014-06-25T00:00:00.000Z',
demo: true,
person: {
id: 12345,
name: 'John Doe',
phones: {
home: '800-123-4567',
mobile: '877-123-1234'
},
email: ['jd@example.com', 'jd@example.org'],
dateOfBirth: '1980-01-02T00:00:00.000Z',
registered: true,
emergencyContacts: [
{
name: 'Jane Doe',
phone: '888-555-1212',
relationship: 'spouse'
},
{
name: 'Justin Doe',
phone: '877-123-1212',
relationship: 'parent'
}
]
}
};
And pass the data to the table:
// ...
@Component({
template: `
<ngx-json-table [data]="data"></ngx-json-table>
`
})
// ...
Now you have some data in the table.
Installation, customization and other useful articles: https://bacali95.github.io/ngx-json-table/
MIT license.
FAQs
Show and edit a JSON object using HTML table.
The npm package ngx-json-table receives a total of 0 weekly downloads. As such, ngx-json-table popularity was classified as not popular.
We found that ngx-json-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.