Home / Companies / PubNub / Blog / May 2019

May 2019 Summaries

2 posts from PubNub

Filter
Month: Year:
Post Summaries Back to Blog
PubNub offers a comprehensive suite of encryption and data privacy tools to help applications comply with GDPR requirements, focusing on data in transit and at rest through SSL/TLS and AES encryption. With built-in AES encryption support, developers can secure data across various platforms, though they are responsible for managing encryption keys. PubNub's Access Manager allows fine-grain control over data streams, ensuring compliance with GDPR's data access principles, while also offering options for persistent data storage and message deletion to meet GDPR Article 17 requirements. The platform supports data portability in accordance with GDPR by providing data in a standard JSON format and offers the flexibility of storing data in EU-hosted centers or using a transient-only mode to prevent data storage. PubNub maintains a strong compliance environment with updated Article 30 records and policies to aid users in responding to data breaches promptly, aligning with GDPR Articles 33 and 34.
May 15, 2019 1,935 words in the original blog post.
The tutorial outlines the process of building a real-time group chat application using Vue.js and PubNub, focusing on the implementation of the Publish/Subscribe (Pub/Sub) model and history storage for message retrieval. PubNub is utilized to handle the underlying infrastructure, allowing developers to focus on the app itself by using the PubNub Vue.js SDK for sending, receiving, and storing messages. The tutorial involves setting up a centralized store with Vuex for managing application state, using unique user identifiers (UUIDs), and ensuring messages are displayed in real-time and stored for later retrieval. It also addresses the setup of a basic UI with components such as ChatContainer, MessageInput, MessageBubble, and ChatLog to facilitate chat functionality. Additionally, it highlights the importance of the Storage & Playback feature for message persistence and discusses the limitations of using temporary UUIDs, proposing persistent UUIDs for production to maintain message continuity. The tutorial concludes by encouraging further development and integration of additional features to enhance chat applications.
May 15, 2019 5,558 words in the original blog post.